File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4027,6 +4027,7 @@ pthread_attr_getinheritsched
4027
4027
pthread_attr_getschedparam
4028
4028
pthread_attr_getschedpolicy
4029
4029
pthread_attr_getstack
4030
+ pthread_attr_setstack
4030
4031
pthread_attr_setguardsize
4031
4032
pthread_attr_setinheritsched
4032
4033
pthread_attr_setschedparam
Original file line number Diff line number Diff line change @@ -1783,6 +1783,11 @@ extern "C" {
1783
1783
stackaddr : * mut * mut c_void ,
1784
1784
stacksize : * mut size_t ,
1785
1785
) -> c_int ;
1786
+ pub fn pthread_attr_setstack (
1787
+ attr : * mut crate :: pthread_attr_t ,
1788
+ stackaddr : * mut c_void ,
1789
+ stacksize : size_t ,
1790
+ ) -> c_int ;
1786
1791
pub fn memalign ( align : size_t , size : size_t ) -> * mut c_void ;
1787
1792
pub fn setgroups ( ngroups : size_t , ptr : * const crate :: gid_t ) -> c_int ;
1788
1793
pub fn pipe2 ( fds : * mut c_int , flags : c_int ) -> c_int ;
You can’t perform that action at this time.
0 commit comments