File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/unix/notbsd/emscripten Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1789,6 +1789,9 @@ fn test_emscripten(target: &str) {
1789
1789
// users should use SIGSYS instead
1790
1790
"SIGUNUSED" => true ,
1791
1791
1792
+ // FIXME: emscripten uses different constants to constructs these
1793
+ n if n. contains ( "__SIZEOF_PTHREAD" ) => true ,
1794
+
1792
1795
_ => false ,
1793
1796
}
1794
1797
} ) ;
Original file line number Diff line number Diff line change @@ -1827,9 +1827,9 @@ extern {
1827
1827
pub fn getdomainname ( name : * mut :: c_char , len : :: size_t ) -> :: c_int ;
1828
1828
pub fn setdomainname ( name : * const :: c_char , len : :: size_t ) -> :: c_int ;
1829
1829
pub fn sendmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
1830
- flags : :: c_int ) -> :: c_int ;
1830
+ flags : :: c_uint ) -> :: c_int ;
1831
1831
pub fn recvmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
1832
- flags : :: c_int , timeout : * mut :: timespec ) -> :: c_int ;
1832
+ flags : :: c_uint , timeout : * mut :: timespec ) -> :: c_int ;
1833
1833
pub fn sync ( ) ;
1834
1834
pub fn ioctl ( fd : :: c_int , request : :: c_int , ...) -> :: c_int ;
1835
1835
pub fn getpriority ( which : :: c_int , who : :: id_t ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments