diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-23 17:22:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-23 17:22:17 +0000 |
commit | c19559b0bcec2afce4952ea4bbc8724a7a99bd6a (patch) | |
tree | dbd7c1ce22f2e3267841d3f7a41745d6edbff5d5 /include/sched.h | |
parent | 4d8d74583abec02470a87ac1481f7dc3b2fa33b5 (diff) | |
download | glibc-c19559b0bcec2afce4952ea4bbc8724a7a99bd6a.tar glibc-c19559b0bcec2afce4952ea4bbc8724a7a99bd6a.tar.gz glibc-c19559b0bcec2afce4952ea4bbc8724a7a99bd6a.tar.bz2 glibc-c19559b0bcec2afce4952ea4bbc8724a7a99bd6a.zip |
Update.
* include/aio.h: Remove __THROW from internal interfaces. __THROW
is only need in external header files that might be compiled by a
C++ compiler.
* include/alloca.h: Likewise.
* include/db.h: Likewise.
* include/dirent.h: Likewise.
* include/execinfo.h: Likewise.
* include/fpu_control.h: Likewise.
* include/glob.h: Likewise.
* include/grp.h: Likewise.
* include/libintl.h: Likewise.
* include/math.h: Likewise.
* include/math.h: Likewise.
* include/mntent.h: Likewise.
* include/mntent.h: Likewise.
* include/netdb.h: Likewise.
* include/pwd.h: Likewise.
* include/sched.h: Likewise.
* include/shadow.h: Likewise.
* include/stdlib.h: Likewise.
* include/sys/file.h: Likewise.
* include/sys/gmon.h: Likewise.
* include/sys/ioctl.h: Likewise.
* include/sys/socket.h: Likewise.
* include/sys/stat.h: Likewise.
* include/sys/sysinfo.h: Likewise.
* include/sys/time.h: Likewise.
* include/sys/times.h: Likewise.
* include/sys/uio.h: Likewise.
* include/sys/wait.h: Likewise.
* include/termios.h: Likewise.
* include/time.h: Likewise.
* include/ulimit.h: Likewise.
* include/utmp.h: Likewise.
* include/wchar.h: Likewise.
1999-11-22 Andreas Jaeger <aj@suse.de>
* sunrpc/rpc_clntout.c (printbody): Fix -CLMNab output.
Patch by Jerry Perkins <jrperkins@iname.com>, closes PR
libc/1456+1457.
1999-11-22 Jakub Jelinek <jakub@redhat.com>
* sysdeps/generic/siglist.h: Avoid declaring the same field
twice if SIGPWR is defined to SIGLOST.
* sysdeps/sparc/sparc32/memcpy.S: bcopy takes size_t argument,
not signed, so we should not special case it for negative args.
* sysdeps/sparc/sparc32/sparcv9/memmove.c: Don't use generic
memmove, use the one provided in memcpy.S.
* sysdeps/sparc/sparc64/memcpy.S: bcopy should handle overlapping
copies like memmove, while the previous version worked like memcpy.
Implement optimized assembly memmove.
* sysdeps/sparc/sparc64/memmove.c: New file.
1999-11-23 Ulrich Drepper <drepper@cygnus.com>
* po/cs.po: Update from translators.
1999-11-23 Andreas Jaeger <aj@suse.de>
Diffstat (limited to 'include/sched.h')
-rw-r--r-- | include/sched.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/sched.h b/include/sched.h index b159e7ac74..3866a0d08b 100644 --- a/include/sched.h +++ b/include/sched.h @@ -3,17 +3,17 @@ /* Now define the internal interfaces. */ extern int __sched_setparam (__pid_t __pid, - __const struct sched_param *__param) __THROW; -extern int __sched_getparam (__pid_t __pid, struct sched_param *__param) __THROW; + __const struct sched_param *__param); +extern int __sched_getparam (__pid_t __pid, struct sched_param *__param); extern int __sched_setscheduler (__pid_t __pid, int __policy, - __const struct sched_param *__param) __THROW; -extern int __sched_getscheduler (__pid_t __pid) __THROW; -extern int __sched_yield (void) __THROW; -extern int __sched_get_priority_max (int __algorithm) __THROW; -extern int __sched_get_priority_min (int __algorithm) __THROW; -extern int __sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW; + __const struct sched_param *__param); +extern int __sched_getscheduler (__pid_t __pid); +extern int __sched_yield (void); +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); /* This is Linux specific. */ extern int __clone (int (*__fn) (void *__arg), void *__child_stack, - int __flags, void *__arg) __THROW; + int __flags, void *__arg); #endif |