aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/bsd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-03-31 22:04:32 +0000
committerUlrich Drepper <drepper@redhat.com>1998-03-31 22:04:32 +0000
commit3331899af3fcaf628e118686a4ebbf592dca9ec8 (patch)
tree6d0644b10811fec10cda69c38263174bf40ce66d /sysdeps/unix/bsd
parent12bf4b4adea6fab952bf7b4e9bab173727b1a5b1 (diff)
downloadglibc-3331899af3fcaf628e118686a4ebbf592dca9ec8.zip
glibc-3331899af3fcaf628e118686a4ebbf592dca9ec8.tar.gz
glibc-3331899af3fcaf628e118686a4ebbf592dca9ec8.tar.bz2
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/unix/bsd')
-rw-r--r--sysdeps/unix/bsd/bits/signum.h6
-rw-r--r--sysdeps/unix/bsd/getpt.c2
-rw-r--r--sysdeps/unix/bsd/ulimit.c3
3 files changed, 8 insertions, 3 deletions
diff --git a/sysdeps/unix/bsd/bits/signum.h b/sysdeps/unix/bsd/bits/signum.h
index 775240f..9e2428c 100644
--- a/sysdeps/unix/bsd/bits/signum.h
+++ b/sysdeps/unix/bsd/bits/signum.h
@@ -1,5 +1,5 @@
/* Signal number definitions. BSD version.
- Copyright (C) 1991, 1992, 1993, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1992, 1993, 1996, 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
@@ -27,6 +27,10 @@
#define SIG_DFL ((__sighandler_t) 0) /* Default action. */
#define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */
+#ifdef __USE_UNIX98
+# define SIG_HOLD ((__sighandler_t) 2) /* Add signal to hold mask. */
+#endif
+
/* Signals. */
#define SIGHUP 1 /* Hangup (POSIX). */
diff --git a/sysdeps/unix/bsd/getpt.c b/sysdeps/unix/bsd/getpt.c
index cb47692..3bc34b1 100644
--- a/sysdeps/unix/bsd/getpt.c
+++ b/sysdeps/unix/bsd/getpt.c
@@ -57,4 +57,4 @@ __getpt ()
__set_errno (ENFILE);
return -1;
}
-weak_alias (getpt, __getpt)
+weak_alias (__getpt, getpt)
diff --git a/sysdeps/unix/bsd/ulimit.c b/sysdeps/unix/bsd/ulimit.c
index 4a242ef..5fb3d40 100644
--- a/sysdeps/unix/bsd/ulimit.c
+++ b/sysdeps/unix/bsd/ulimit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1994, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 92, 94, 96, 97, 98 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
@@ -19,6 +19,7 @@
#include <errno.h>
#include <stdarg.h>
#include <sysdep.h>
+#include <ulimit.h>
#include <unistd.h>
#include <sys/resource.h>