File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1972,6 +1972,8 @@ SIGEV_SIGNAL
1972
1972
SIGEV_THREAD
1973
1973
SIGPOLL
1974
1974
SIGPWR
1975
+ SIGRTMAX
1976
+ SIGRTMIN
1975
1977
SIGSTKSZ
1976
1978
SIOCADDMULTI
1977
1979
SIOCADDRT
Original file line number Diff line number Diff line change @@ -1418,6 +1418,14 @@ f! {
1418
1418
}
1419
1419
1420
1420
safe_f ! {
1421
+ pub fn SIGRTMAX ( ) -> :: c_int {
1422
+ unsafe { __libc_current_sigrtmax( ) }
1423
+ }
1424
+
1425
+ pub fn SIGRTMIN ( ) -> :: c_int {
1426
+ unsafe { __libc_current_sigrtmin( ) }
1427
+ }
1428
+
1421
1429
pub { const } fn WIFSTOPPED ( status: :: c_int) -> bool {
1422
1430
( status & 0xff ) == 0x7f
1423
1431
}
@@ -1480,6 +1488,11 @@ safe_f! {
1480
1488
}
1481
1489
1482
1490
extern "C" {
1491
+ #[ doc( hidden) ]
1492
+ pub fn __libc_current_sigrtmax ( ) -> :: c_int ;
1493
+ #[ doc( hidden) ]
1494
+ pub fn __libc_current_sigrtmin ( ) -> :: c_int ;
1495
+
1483
1496
pub fn sem_destroy ( sem : * mut sem_t ) -> :: c_int ;
1484
1497
pub fn sem_init ( sem : * mut sem_t , pshared : :: c_int , value : :: c_uint ) -> :: c_int ;
1485
1498
pub fn fdatasync ( fd : :: c_int ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments