File tree 17 files changed +23
-4
lines changed
17 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -1437,6 +1437,7 @@ pseudo_AF_XTP
1437
1437
pthread_attr_get_np
1438
1438
pthread_attr_getguardsize
1439
1439
pthread_attr_getstack
1440
+ pthread_attr_setguardsize
1440
1441
pthread_barrierattr_destroy
1441
1442
pthread_barrierattr_getpshared
1442
1443
pthread_barrierattr_init
Original file line number Diff line number Diff line change @@ -2010,6 +2010,7 @@ pseudo_AF_XTP
2010
2010
pthread_attr_get_np
2011
2011
pthread_attr_getguardsize
2012
2012
pthread_attr_getstack
2013
+ pthread_attr_setguardsize
2013
2014
pthread_barrierattr_destroy
2014
2015
pthread_barrierattr_getpshared
2015
2016
pthread_barrierattr_init
Original file line number Diff line number Diff line change @@ -1294,6 +1294,7 @@ ppoll
1294
1294
preadv
1295
1295
pthread_attr_getguardsize
1296
1296
pthread_attr_getstack
1297
+ pthread_attr_setguardsize
1297
1298
pthread_cancel
1298
1299
pthread_condattr_getclock
1299
1300
pthread_condattr_setclock
Original file line number Diff line number Diff line change @@ -3333,6 +3333,7 @@ pread64
3333
3333
preadv
3334
3334
pthread_attr_getguardsize
3335
3335
pthread_attr_getstack
3336
+ pthread_attr_setguardsize
3336
3337
pthread_cancel
3337
3338
pthread_condattr_getclock
3338
3339
pthread_condattr_getpshared
Original file line number Diff line number Diff line change @@ -1425,6 +1425,7 @@ pseudo_AF_XTP
1425
1425
pthread_attr_get_np
1426
1426
pthread_attr_getguardsize
1427
1427
pthread_attr_getstack
1428
+ pthread_attr_setguardsize
1428
1429
pthread_cancel
1429
1430
pthread_condattr_setclock
1430
1431
pthread_getattr_np
Original file line number Diff line number Diff line change @@ -1146,6 +1146,7 @@ pseudo_AF_RTIP
1146
1146
pseudo_AF_XTP
1147
1147
pthread_attr_getguardsize
1148
1148
pthread_attr_getstack
1149
+ pthread_attr_setguardsize
1149
1150
pthread_cancel
1150
1151
pthread_condattr_setclock
1151
1152
pthread_get_name_np
Original file line number Diff line number Diff line change @@ -671,6 +671,7 @@ protoent
671
671
pselect
672
672
pthread_attr_destroy
673
673
pthread_attr_init
674
+ pthread_attr_getstacksize
674
675
pthread_attr_setdetachstate
675
676
pthread_attr_setstacksize
676
677
pthread_attr_t
Original file line number Diff line number Diff line change @@ -3687,6 +3687,10 @@ extern "C" {
3687
3687
pub fn pthread_exit ( value : * mut :: c_void ) -> !;
3688
3688
pub fn pthread_attr_init ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
3689
3689
pub fn pthread_attr_destroy ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
3690
+ pub fn pthread_attr_getstacksize (
3691
+ attr : * const :: pthread_attr_t ,
3692
+ stacksize : * mut :: size_t ,
3693
+ ) -> :: c_int ;
3690
3694
pub fn pthread_attr_setstacksize ( attr : * mut :: pthread_attr_t , stack_size : :: size_t ) -> :: c_int ;
3691
3695
pub fn pthread_attr_setdetachstate ( attr : * mut :: pthread_attr_t , state : :: c_int ) -> :: c_int ;
3692
3696
pub fn pthread_detach ( thread : :: pthread_t ) -> :: c_int ;
@@ -4161,6 +4165,7 @@ extern "C" {
4161
4165
attr : * const :: pthread_attr_t ,
4162
4166
guardsize : * mut :: size_t ,
4163
4167
) -> :: c_int ;
4168
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
4164
4169
pub fn sethostname ( name : * const :: c_char , len : :: size_t ) -> :: c_int ;
4165
4170
pub fn sched_get_priority_min ( policy : :: c_int ) -> :: c_int ;
4166
4171
pub fn umount2 ( target : * const :: c_char , flags : :: c_int ) -> :: c_int ;
Original file line number Diff line number Diff line change @@ -2669,6 +2669,7 @@ extern "C" {
2669
2669
attr : * const :: pthread_attr_t ,
2670
2670
guardsize : * mut :: size_t ,
2671
2671
) -> :: c_int ;
2672
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
2672
2673
pub fn pthread_attr_getschedparam (
2673
2674
attr : * const :: pthread_attr_t ,
2674
2675
param : * mut sched_param ,
Original file line number Diff line number Diff line change @@ -1590,6 +1590,7 @@ extern "C" {
1590
1590
attr : * const :: pthread_attr_t ,
1591
1591
guardsize : * mut :: size_t ,
1592
1592
) -> :: c_int ;
1593
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
1593
1594
pub fn pthread_attr_getstack (
1594
1595
attr : * const :: pthread_attr_t ,
1595
1596
stackaddr : * mut * mut :: c_void ,
Original file line number Diff line number Diff line change @@ -2727,6 +2727,7 @@ extern "C" {
2727
2727
attr : * const :: pthread_attr_t ,
2728
2728
guardsize : * mut :: size_t ,
2729
2729
) -> :: c_int ;
2730
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
2730
2731
pub fn pthread_attr_getstack (
2731
2732
attr : * const :: pthread_attr_t ,
2732
2733
stackaddr : * mut * mut :: c_void ,
Original file line number Diff line number Diff line change @@ -1827,6 +1827,7 @@ extern "C" {
1827
1827
attr : * const :: pthread_attr_t ,
1828
1828
guardsize : * mut :: size_t ,
1829
1829
) -> :: c_int ;
1830
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
1830
1831
pub fn pthread_attr_getstack (
1831
1832
attr : * const :: pthread_attr_t ,
1832
1833
stackaddr : * mut * mut :: c_void ,
Original file line number Diff line number Diff line change @@ -1679,6 +1679,7 @@ extern "C" {
1679
1679
attr : * const :: pthread_attr_t ,
1680
1680
guardsize : * mut :: size_t ,
1681
1681
) -> :: c_int ;
1682
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
1682
1683
pub fn pthread_attr_getstack (
1683
1684
attr : * const :: pthread_attr_t ,
1684
1685
stackaddr : * mut * mut :: c_void ,
Original file line number Diff line number Diff line change @@ -3498,10 +3498,6 @@ extern "C" {
3498
3498
guardsize : * mut :: size_t ,
3499
3499
) -> :: c_int ;
3500
3500
pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
3501
- pub fn pthread_attr_getstacksize (
3502
- attr : * const :: pthread_attr_t ,
3503
- stacksize : * mut :: size_t ,
3504
- ) -> :: c_int ;
3505
3501
pub fn pthread_attr_getinheritsched (
3506
3502
attr : * const :: pthread_attr_t ,
3507
3503
flag : * mut :: c_int ,
Original file line number Diff line number Diff line change @@ -4582,6 +4582,7 @@ extern "C" {
4582
4582
attr : * const :: pthread_attr_t ,
4583
4583
guardsize : * mut :: size_t ,
4584
4584
) -> :: c_int ;
4585
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
4585
4586
pub fn sethostname ( name : * const :: c_char , len : :: size_t ) -> :: c_int ;
4586
4587
pub fn sched_get_priority_min ( policy : :: c_int ) -> :: c_int ;
4587
4588
pub fn pthread_condattr_getpshared (
Original file line number Diff line number Diff line change @@ -1076,6 +1076,10 @@ extern "C" {
1076
1076
pub fn pthread_exit ( value : * mut :: c_void ) -> !;
1077
1077
pub fn pthread_attr_init ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
1078
1078
pub fn pthread_attr_destroy ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
1079
+ pub fn pthread_attr_getstacksize (
1080
+ attr : * const :: pthread_attr_t ,
1081
+ stacksize : * mut :: size_t ,
1082
+ ) -> :: c_int ;
1079
1083
pub fn pthread_attr_setstacksize ( attr : * mut :: pthread_attr_t , stack_size : :: size_t ) -> :: c_int ;
1080
1084
pub fn pthread_attr_setdetachstate ( attr : * mut :: pthread_attr_t , state : :: c_int ) -> :: c_int ;
1081
1085
pub fn pthread_detach ( thread : :: pthread_t ) -> :: c_int ;
Original file line number Diff line number Diff line change @@ -3092,6 +3092,7 @@ extern "C" {
3092
3092
attr : * const :: pthread_attr_t ,
3093
3093
guardsize : * mut :: size_t ,
3094
3094
) -> :: c_int ;
3095
+ pub fn pthread_attr_setguardsize ( attr : * mut :: pthread_attr_t , guardsize : :: size_t ) -> :: c_int ;
3095
3096
pub fn sethostname ( name : * const :: c_char , len : :: size_t ) -> :: c_int ;
3096
3097
pub fn sched_get_priority_min ( policy : :: c_int ) -> :: c_int ;
3097
3098
pub fn pthread_condattr_getpshared (
You can’t perform that action at this time.
0 commit comments