We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c1b0ee commit 412dd4eCopy full SHA for 412dd4e
src/unix/solarish/mod.rs
@@ -2060,11 +2060,17 @@ extern "C" {
2060
advice: ::c_int,
2061
) -> ::c_int;
2062
2063
- pub fn shmat(shmid: ::c_int, shmaddr: *const ::c_void,
2064
- shmflg: ::c_int) -> *mut ::c_void;
2065
-
2066
- pub fn shmctl(shmid: ::c_int, cmd: ::c_int,
2067
- buf: *mut ::shmid_ds) -> ::c_int;
+ pub fn shmat(
+ shmid: ::c_int,
+ shmaddr: *const ::c_void,
+ shmflg: ::c_int,
+ ) -> *mut ::c_void;
2068
+
2069
+ pub fn shmctl(
2070
2071
+ cmd: ::c_int,
2072
+ buf: *mut ::shmid_ds,
2073
+ ) -> ::c_int;
2074
2075
pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;
2076
0 commit comments