diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-02-07 21:30:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-02-07 21:30:11 +0000 |
commit | 9395e8892d918c4e00b571ae7efeea4b4b7d5e7b (patch) | |
tree | 3e22877897c3ab3dc2b6e10ff503b85329814a11 | |
parent | 48f6496e3fdb55c66088c5122779d400f2b3ac39 (diff) | |
download | glibc-9395e8892d918c4e00b571ae7efeea4b4b7d5e7b.tar.gz glibc-9395e8892d918c4e00b571ae7efeea4b4b7d5e7b.tar.xz glibc-9395e8892d918c4e00b571ae7efeea4b4b7d5e7b.zip |
Update.
* signal/signal.h: Don't declare __libc_allocate_rtsig. * include/signal.h: Declare __libc_allocate_rtsig here.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | include/signal.h | 3 | ||||
-rw-r--r-- | signal/signal.h | 5 |
3 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 0c8fab08d7..277a68c1a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-02-07 Ulrich Drepper <drepper@cygnus.com> + * signal/signal.h: Don't declare __libc_allocate_rtsig. + * include/signal.h: Declare __libc_allocate_rtsig here. + * elf/dl-lookup.c: Increment _dl_num_relocations in the four entry point functions, not do_lookup since the later can be called more than once. diff --git a/include/signal.h b/include/signal.h index 1a14ff3dc7..4ee3c6c265 100644 --- a/include/signal.h +++ b/include/signal.h @@ -23,5 +23,8 @@ extern int __sigvec __P ((int __sig, __const struct sigvec *__vec, extern int __sigreturn __P ((struct sigcontext *__scp)); extern int __sigaltstack __P ((__const struct sigaltstack *__ss, struct sigaltstack *__oss)); + +/* Allocate real-time signal with highest/lowest available priority. */ +extern int __libc_allocate_rtsig __P ((int __high)); #endif #endif diff --git a/signal/signal.h b/signal/signal.h index 107650f113..6b8c345b87 100644 --- a/signal/signal.h +++ b/signal/signal.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -349,9 +349,6 @@ extern int __libc_current_sigrtmin __P ((void)); /* Return number of available real-time signal with lowest priority. */ extern int __libc_current_sigrtmax __P ((void)); -/* Allocate real-time signal with highest/lowest available priority. */ -extern int __libc_allocate_rtsig __P ((int __high)); - #endif /* signal.h */ __END_DECLS |