File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4924,9 +4924,6 @@ cfg_if! {
4924
4924
spbufp: * mut * mut spwd,
4925
4925
) -> :: c_int;
4926
4926
4927
- pub fn shm_open( name: * const c_char, oflag: :: c_int, mode: mode_t) -> :: c_int;
4928
- pub fn shm_unlink( name: * const :: c_char) -> :: c_int;
4929
-
4930
4927
pub fn mq_open( name: * const :: c_char, oflag: :: c_int, ...) -> :: mqd_t;
4931
4928
pub fn mq_close( mqd: :: mqd_t) -> :: c_int;
4932
4929
pub fn mq_unlink( name: * const :: c_char) -> :: c_int;
@@ -5013,6 +5010,9 @@ extern "C" {
5013
5010
5014
5011
pub fn getspnam ( name : * const :: c_char ) -> * mut spwd ;
5015
5012
5013
+ pub fn shm_open ( name : * const c_char , oflag : :: c_int , mode : mode_t ) -> :: c_int ;
5014
+ pub fn shm_unlink ( name : * const :: c_char ) -> :: c_int ;
5015
+
5016
5016
// System V IPC
5017
5017
pub fn shmget ( key : :: key_t , size : :: size_t , shmflg : :: c_int ) -> :: c_int ;
5018
5018
pub fn shmat ( shmid : :: c_int , shmaddr : * const :: c_void , shmflg : :: c_int ) -> * mut :: c_void ;
You can’t perform that action at this time.
0 commit comments