Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 8 May 2004 16:43:13 +0000 (16:43 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 8 May 2004 16:43:13 +0000 (16:43 +0000)
2004-05-08  Ulrich Drepper  <drepper@redhat.com>

* signal/signal.h: Use BSD sigpause only if BSD behavior is preferred.

ChangeLog
signal/signal.h

index eee9cd90979c5958a3086e566d38e485995f1970..d7446f9b3268e83e89e42d15f7348f1cbc6be6b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-08  Ulrich Drepper  <drepper@redhat.com>
+
+       * signal/signal.h: Use BSD sigpause only if BSD behavior is preferred.
+
 2004-04-29  Steven Munroe  <sjmunroe@us.ibm.com>
 
        * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (LOADARGS_1,
index 94839b2da00e0f4bebd57628795ea53755859770..2b57180695994ada72abc16639841dda0ecfd943 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-1999,2000,2001,2002,2003 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2003, 2004 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
@@ -148,7 +148,7 @@ extern void psignal (int __sig, __const char *__s);
    __THROW.  */
 extern int __sigpause (int __sig_or_mask, int __is_sig);
 
-#ifdef __USE_BSD
+#ifdef __FAVOR_BSD
 /* Set the mask of blocked signals to MASK,
    wait for a signal to arrive, and then restore the mask.  */
 extern int sigpause (int __mask) __THROW;