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 @@ -5392,9 +5392,6 @@ cfg_if! {
5392
5392
spbufp: * mut * mut spwd,
5393
5393
) -> :: c_int;
5394
5394
5395
- pub fn shm_open( name: * const c_char, oflag: :: c_int, mode: mode_t) -> :: c_int;
5396
- pub fn shm_unlink( name: * const :: c_char) -> :: c_int;
5397
-
5398
5395
pub fn mq_open( name: * const :: c_char, oflag: :: c_int, ...) -> :: mqd_t;
5399
5396
pub fn mq_close( mqd: :: mqd_t) -> :: c_int;
5400
5397
pub fn mq_unlink( name: * const :: c_char) -> :: c_int;
@@ -5481,6 +5478,9 @@ extern "C" {
5481
5478
5482
5479
pub fn getspnam ( name : * const :: c_char ) -> * mut spwd ;
5483
5480
5481
+ pub fn shm_open ( name : * const c_char , oflag : :: c_int , mode : mode_t ) -> :: c_int ;
5482
+ pub fn shm_unlink ( name : * const :: c_char ) -> :: c_int ;
5483
+
5484
5484
// System V IPC
5485
5485
pub fn shmget ( key : :: key_t , size : :: size_t , shmflg : :: c_int ) -> :: c_int ;
5486
5486
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