diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:49:28 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:49:28 +0000 |
commit | 5f7339fd738083baf7e42268301babd4324c3e3e (patch) | |
tree | 092a1ceb6ff0b6e83808b53fed77a4cd64609ba1 /libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c | |
parent | 1191db0686f450f1e9988fc04621489ba7e0a907 (diff) | |
download | uClibc-alpine-5f7339fd738083baf7e42268301babd4324c3e3e.tar.bz2 uClibc-alpine-5f7339fd738083baf7e42268301babd4324c3e3e.tar.xz |
Merge from trunk.
Diffstat (limited to 'libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c')
-rw-r--r-- | libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c index af1581a4c..b9ada6417 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c @@ -56,7 +56,7 @@ __libc_current_sigrtmin (void) init (); return current_rtmin; } -strong_alias (__libc_current_sigrtmin, __libc_current_sigrtmin_private); +strong_alias (__libc_current_sigrtmin, __libc_current_sigrtmin_private) libc_hidden_def (__libc_current_sigrtmin) /* Return number of available real-time signal with lowest priority. */ @@ -67,7 +67,7 @@ __libc_current_sigrtmax (void) init (); return current_rtmax; } -strong_alias (__libc_current_sigrtmax, __libc_current_sigrtmax_private); +strong_alias (__libc_current_sigrtmax, __libc_current_sigrtmax_private) libc_hidden_def (__libc_current_sigrtmax) /* Allocate real-time signal with highest/lowest available @@ -84,4 +84,4 @@ __libc_allocate_rtsig (int high) return high ? current_rtmin++ : current_rtmax--; } -strong_alias (__libc_allocate_rtsig, __libc_allocate_rtsig_private); +strong_alias (__libc_allocate_rtsig, __libc_allocate_rtsig_private) |