summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-07-31 07:17:01 +0000
committerRoland McGrath <roland@gnu.org>2006-07-31 07:17:01 +0000
commit518b2177f6c4f79e148414edf507a1aabab0e07b (patch)
tree8208ec657ac9776ade468a04bc9a8d60e8ab9e2a /include
parentab5823b4b6e760345d347b98830ccc75aa81bff6 (diff)
Updated to fedora-glibc-20060731T0706
Diffstat (limited to 'include')
-rw-r--r--include/signal.h3
-rw-r--r--include/time.h5
-rw-r--r--include/unistd.h2
3 files changed, 7 insertions, 3 deletions
diff --git a/include/signal.h b/include/signal.h
index 2be67babad..6bbfbcf808 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -26,6 +26,9 @@ extern int __sigprocmask (int __how,
__const sigset_t *__set, sigset_t *__oset);
extern int __sigsuspend (__const sigset_t *__set);
libc_hidden_proto (__sigsuspend)
+#ifndef NO_CANCELLATION
+extern int __sigsuspend_nocancel (__const sigset_t *__set) attribute_hidden;
+#endif
extern int __sigwait (__const sigset_t *__set, int *__sig);
libc_hidden_proto (__sigwait)
extern int __sigwaitinfo (__const sigset_t *__set, siginfo_t *__info);
diff --git a/include/time.h b/include/time.h
index f2a6489efd..d71f985014 100644
--- a/include/time.h
+++ b/include/time.h
@@ -81,9 +81,10 @@ extern long int __tzname_max (void);
extern int __nanosleep (__const struct timespec *__requested_time,
struct timespec *__remaining);
+libc_hidden_proto (__nanosleep)
extern int __nanosleep_nocancel (__const struct timespec *__requested_time,
- struct timespec *__remaining);
-libc_hidden_proto(__nanosleep)
+ struct timespec *__remaining)
+ attribute_hidden;
extern int __getdate_r (__const char *__string, struct tm *__resbufp);
diff --git a/include/unistd.h b/include/unistd.h
index fb7a044b57..f34d53f223 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -163,6 +163,6 @@ extern __pid_t __libc_fork (void);
This always returns -1 and sets `errno' to EINTR. */
extern int __libc_pause (void);
/* Not cancelable variant. */
-extern int __pause_nocancel (void);
+extern int __pause_nocancel (void) attribute_hidden;
#endif