File tree 2 files changed +6
-0
lines changed 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4031,6 +4031,7 @@ pthread_attr_setguardsize
4031
4031
pthread_attr_setinheritsched
4032
4032
pthread_attr_setschedparam
4033
4033
pthread_attr_setschedpolicy
4034
+ pthread_attr_setstack
4034
4035
pthread_barrier_destroy
4035
4036
pthread_barrier_init
4036
4037
pthread_barrier_t
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