File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1213,6 +1213,10 @@ extern {
1213
1213
pub fn sethostname ( name : * const :: c_char , len : :: size_t ) -> :: c_int ;
1214
1214
pub fn if_nameindex ( ) -> * mut if_nameindex ;
1215
1215
pub fn if_freenameindex ( ptr : * mut if_nameindex ) ;
1216
+ pub fn pthread_create ( native : * mut :: pthread_t ,
1217
+ attr : * const :: pthread_attr_t ,
1218
+ f : extern fn ( * mut :: c_void ) -> * mut :: c_void ,
1219
+ value : * mut :: c_void ) -> :: c_int ;
1216
1220
pub fn pthread_condattr_getclock ( attr : * const pthread_condattr_t ,
1217
1221
clock_id : * mut clockid_t ) -> :: c_int ;
1218
1222
pub fn pthread_condattr_setclock ( attr : * mut pthread_condattr_t ,
@@ -1245,6 +1249,8 @@ extern {
1245
1249
1246
1250
pub fn msync ( addr : * mut :: c_void , len : :: size_t , flags : :: c_int ) -> :: c_int ;
1247
1251
1252
+ pub fn memalign ( align : :: size_t , size : :: size_t ) -> * mut :: c_void ;
1253
+
1248
1254
pub fn recvfrom ( socket : :: c_int , buf : * mut :: c_void , len : :: size_t ,
1249
1255
flags : :: c_int , addr : * mut :: sockaddr ,
1250
1256
addrlen : * mut :: socklen_t ) -> :: ssize_t ;
You can’t perform that action at this time.
0 commit comments