diff options
Diffstat (limited to 'libc/signal/allocrtsig.c')
-rw-r--r-- | libc/signal/allocrtsig.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/signal/allocrtsig.c b/libc/signal/allocrtsig.c index 40b5ea24c..05f3d6c90 100644 --- a/libc/signal/allocrtsig.c +++ b/libc/signal/allocrtsig.c @@ -59,6 +59,7 @@ int __libc_current_sigrtmax (void) return current_rtmax; } +#if 0 /* Allocate real-time signal with highest/lowest available priority. Please note that we don't use a lock since we assume this function to be called at program start. */ @@ -71,3 +72,4 @@ int __libc_allocate_rtsig (int high) return high ? current_rtmin++ : current_rtmax--; } +#endif |