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 {
12131213 pub fn sethostname ( name : * const :: c_char , len : :: size_t ) -> :: c_int ;
12141214 pub fn if_nameindex ( ) -> * mut if_nameindex ;
12151215 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 ;
12161220 pub fn pthread_condattr_getclock ( attr : * const pthread_condattr_t ,
12171221 clock_id : * mut clockid_t ) -> :: c_int ;
12181222 pub fn pthread_condattr_setclock ( attr : * mut pthread_condattr_t ,
@@ -1245,6 +1249,8 @@ extern {
12451249
12461250 pub fn msync ( addr : * mut :: c_void , len : :: size_t , flags : :: c_int ) -> :: c_int ;
12471251
1252+ pub fn memalign ( align : :: size_t , size : :: size_t ) -> * mut :: c_void ;
1253+
12481254 pub fn recvfrom ( socket : :: c_int , buf : * mut :: c_void , len : :: size_t ,
12491255 flags : :: c_int , addr : * mut :: sockaddr ,
12501256 addrlen : * mut :: socklen_t ) -> :: ssize_t ;
You can’t perform that action at this time.
0 commit comments