diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-07-29 05:07:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-07-29 05:07:43 +0000 |
commit | d5ba53f90790e2c3e9c95e39db32067d7e25b34e (patch) | |
tree | a97a71a37f5535846ce5bf52a263724ca6183b23 /include/unistd.h | |
parent | df47504c78f82b9c975b2a48a6c8b6dd73a79ce1 (diff) | |
download | glibc-d5ba53f90790e2c3e9c95e39db32067d7e25b34e.tar glibc-d5ba53f90790e2c3e9c95e39db32067d7e25b34e.tar.gz glibc-d5ba53f90790e2c3e9c95e39db32067d7e25b34e.tar.bz2 glibc-d5ba53f90790e2c3e9c95e39db32067d7e25b34e.zip |
* sysdeps/unix/sysv/linux/kernel-features.h: Definecvs/fedora-glibc-20060729T2255
__ASSUME_FUTEX_LOCK_PI.
* include/time.h: Declare __nanosleep_nocancel.
* include/unistd.h: Declare __pause_nocancel.
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index f8f15ed019..fb7a044b57 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -162,5 +162,7 @@ extern __pid_t __libc_fork (void); /* Suspend the process until a signal arrives. This always returns -1 and sets `errno' to EINTR. */ extern int __libc_pause (void); +/* Not cancelable variant. */ +extern int __pause_nocancel (void); #endif |