diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-01-11 17:57:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-01-11 17:57:46 +0000 |
commit | bd7d6b406d28d0eb334b10e7cdfe952698fa2032 (patch) | |
tree | 7cb7a4e17e1910c6e196171c577036dc2dd7b199 /include/sched.h | |
parent | af047cff7142b324f9236a745ee9cafb400434ba (diff) | |
download | glibc-bd7d6b406d28d0eb334b10e7cdfe952698fa2032.tar glibc-bd7d6b406d28d0eb334b10e7cdfe952698fa2032.tar.gz glibc-bd7d6b406d28d0eb334b10e7cdfe952698fa2032.tar.bz2 glibc-bd7d6b406d28d0eb334b10e7cdfe952698fa2032.zip |
* include/sys/stat.h: Add libc_hidden_proto for __fxstatat64.
* sysdeps/unix/sysv/linux/fxstatat64.c: Add libc_hidden_def for
__fxstatat64.
* sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Add
__GI___fxstatat64 alias.
* libio/memstream.c (_IO_mem_finish): Fix potential memory leak of
realloc fails.
* include/sched.h: Add libc_hidden_proto for __sched_yield.
Diffstat (limited to 'include/sched.h')
-rw-r--r-- | include/sched.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sched.h b/include/sched.h index 4a142c69af..7b057ea833 100644 --- a/include/sched.h +++ b/include/sched.h @@ -10,6 +10,7 @@ extern int __sched_setscheduler (__pid_t __pid, int __policy, libc_hidden_proto (__sched_setscheduler) extern int __sched_getscheduler (__pid_t __pid); extern int __sched_yield (void); +libc_hidden_proto (__sched_yield) extern int __sched_get_priority_max (int __algorithm); extern int __sched_get_priority_min (int __algorithm); extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t); |