diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-20 11:10:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-20 11:10:37 +0000 |
commit | 69681bdee0226cef026ab761738373955393422b (patch) | |
tree | d104408a000f02c27dcbc06f2855c83e78e6b17e /include | |
parent | d78ce054e2a3b23fed53f42ea7aa6e1c2ff6d748 (diff) | |
download | glibc-69681bdee0226cef026ab761738373955393422b.tar.gz glibc-69681bdee0226cef026ab761738373955393422b.tar.xz glibc-69681bdee0226cef026ab761738373955393422b.zip |
Update.
* include/unistd.h: Don't hide _exit.
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index ec600afc7d..289eb4b740 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,7 +1,10 @@ #ifndef _UNISTD_H # include <posix/unistd.h> -libc_hidden_proto (_exit) +// XXX Normally we should be able to hide _exit. But in the thread library +// XXX we might need to overload this function so that all threads can be +// XXX killed. +// libc_hidden_proto (_exit) libc_hidden_proto (alarm) libc_hidden_proto (confstr) libc_hidden_proto (execl) |