diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-31 22:04:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-31 22:04:32 +0000 |
commit | 3331899af3fcaf628e118686a4ebbf592dca9ec8 (patch) | |
tree | 6d0644b10811fec10cda69c38263174bf40ce66d /sysdeps/mach/hurd | |
parent | 12bf4b4adea6fab952bf7b4e9bab173727b1a5b1 (diff) | |
download | glibc-3331899af3fcaf628e118686a4ebbf592dca9ec8.tar.gz glibc-3331899af3fcaf628e118686a4ebbf592dca9ec8.tar.xz glibc-3331899af3fcaf628e118686a4ebbf592dca9ec8.zip |
Update.
* db2/compat.h: Allow EFTYPE being defined. * sysdeps/unix/bsd/bits/signum.h: Add definition for SIG_HOLD. * sysdeps/unix/bsd/ulimit.c: Include <ulimit.h>. * sysdeps/mach/hurd/bits/fcntl.h: Add O_LARGEFILE. * sysdeps/mach/bits/libc-lock.h: Fix typo. (__libc_once): Correctly unlock semaphore. * sysdeps/mach/hurd/dl-sysdep.c: Include <elf/ldsodefs.h>. * sysdeps/unix/bsd/getpt.c: Fix typo. Patches by UCHIYAMA Yasushi <uch@ddd.scei.sony.co.jp>. 1998-03-31 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'sysdeps/mach/hurd')
-rw-r--r-- | sysdeps/mach/hurd/bits/fcntl.h | 3 | ||||
-rw-r--r-- | sysdeps/mach/hurd/dl-sysdep.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/bits/fcntl.h b/sysdeps/mach/hurd/bits/fcntl.h index 102c2a574f..962e77208b 100644 --- a/sysdeps/mach/hurd/bits/fcntl.h +++ b/sysdeps/mach/hurd/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for GNU. - Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -40,6 +40,7 @@ #define O_RDWR (O_RDONLY|O_WRONLY) /* Open for reading and writing. */ #define O_ACCMODE O_RDWR /* Mask for file access modes. */ +#define O_LARGEFILE 0 /* File name translation flags. These are understood by io servers; diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index befd1120b4..7c936e9466 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -1,5 +1,5 @@ /* Operating system support for run-time dynamic linker. Hurd version. - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,6 +23,7 @@ #include <fcntl.h> #include <stdlib.h> #include <sys/mman.h> +#include <elf/ldsodefs.h> #include <sys/wait.h> #include <assert.h> #include <sysdep.h> |