diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-05-08 16:43:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-05-08 16:43:13 +0000 |
commit | f32d2b81c2fe62c7a4e2fab3290c79cdedfae5d0 (patch) | |
tree | 27207fde282d492dae8b1323e025170d2d9bb8e4 /signal | |
parent | c67a469fb8fdccebc65121c0c91652c65959ba82 (diff) | |
download | glibc-f32d2b81c2fe62c7a4e2fab3290c79cdedfae5d0.tar.gz glibc-f32d2b81c2fe62c7a4e2fab3290c79cdedfae5d0.tar.xz glibc-f32d2b81c2fe62c7a4e2fab3290c79cdedfae5d0.zip |
Update.
2004-05-08 Ulrich Drepper <drepper@redhat.com> * signal/signal.h: Use BSD sigpause only if BSD behavior is preferred.
Diffstat (limited to 'signal')
-rw-r--r-- | signal/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/signal/signal.h b/signal/signal.h index 94839b2da0..2b57180695 100644 --- a/signal/signal.h +++ b/signal/signal.h @@ -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; |