File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1957,6 +1957,8 @@ extern {
1957
1957
pub fn __errno ( ) -> * mut :: c_int ;
1958
1958
pub fn sendmmsg ( sockfd : :: c_int , msgvec : * const :: mmsghdr , vlen : :: c_uint ,
1959
1959
flags : :: c_int ) -> :: c_int ;
1960
+ pub fn recvmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
1961
+ flags : :: c_int , timeout : * const :: timespec ) -> :: c_int ;
1960
1962
}
1961
1963
1962
1964
cfg_if ! {
Original file line number Diff line number Diff line change @@ -2079,6 +2079,8 @@ extern {
2079
2079
pub fn vhangup ( ) -> :: c_int ;
2080
2080
pub fn sendmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
2081
2081
flags : :: c_int ) -> :: c_int ;
2082
+ pub fn recvmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
2083
+ flags : :: c_int , timeout : * mut :: timespec ) -> :: c_int ;
2082
2084
pub fn sync ( ) ;
2083
2085
pub fn syscall ( num : :: c_long , ...) -> :: c_long ;
2084
2086
pub fn sched_getaffinity ( pid : :: pid_t ,
Original file line number Diff line number Diff line change @@ -1378,8 +1378,6 @@ extern {
1378
1378
flags : :: c_int ) -> :: ssize_t ;
1379
1379
pub fn recvmsg ( fd : :: c_int , msg : * mut :: msghdr , flags : :: c_int )
1380
1380
-> :: ssize_t ;
1381
- pub fn recvmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
1382
- flags : :: c_int , timeout : * mut :: timespec ) -> :: c_int ;
1383
1381
pub fn uname ( buf : * mut :: utsname ) -> :: c_int ;
1384
1382
}
1385
1383
You can’t perform that action at this time.
0 commit comments