From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001 From: Date: Mon, 29 Jun 2015 20:16:15 +0000 Subject: Update documentation --- libc/funcs/posix88/mman/fn.mlock.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.mlockall.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.mmap.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.mprotect.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.msync.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.munlock.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.munlockall.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.munmap.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.shm_open.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/fn.shm_unlink.html | 101 ++++++++++++++++ libc/funcs/posix88/mman/index.html | 182 +++++++++++++++++++++++++++++ libc/funcs/posix88/mman/sidebar-items.js | 1 + 12 files changed, 1193 insertions(+) create mode 100644 libc/funcs/posix88/mman/fn.mlock.html create mode 100644 libc/funcs/posix88/mman/fn.mlockall.html create mode 100644 libc/funcs/posix88/mman/fn.mmap.html create mode 100644 libc/funcs/posix88/mman/fn.mprotect.html create mode 100644 libc/funcs/posix88/mman/fn.msync.html create mode 100644 libc/funcs/posix88/mman/fn.munlock.html create mode 100644 libc/funcs/posix88/mman/fn.munlockall.html create mode 100644 libc/funcs/posix88/mman/fn.munmap.html create mode 100644 libc/funcs/posix88/mman/fn.shm_open.html create mode 100644 libc/funcs/posix88/mman/fn.shm_unlink.html create mode 100644 libc/funcs/posix88/mman/index.html create mode 100644 libc/funcs/posix88/mman/sidebar-items.js (limited to 'libc/funcs/posix88/mman') diff --git a/libc/funcs/posix88/mman/fn.mlock.html b/libc/funcs/posix88/mman/fn.mlock.html new file mode 100644 index 0000000..9a177e4 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.mlock.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::mlock - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::mlock + + [] + + [src]

+
pub unsafe extern fn mlock(addr: *const c_void, len: size_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.mlockall.html b/libc/funcs/posix88/mman/fn.mlockall.html new file mode 100644 index 0000000..554cb3c --- /dev/null +++ b/libc/funcs/posix88/mman/fn.mlockall.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::mlockall - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::mlockall + + [] + + [src]

+
pub unsafe extern fn mlockall(flags: c_int) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.mmap.html b/libc/funcs/posix88/mman/fn.mmap.html new file mode 100644 index 0000000..48f28e5 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.mmap.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::mmap - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::mmap + + [] + + [src]

+
pub unsafe extern fn mmap(addr: *mut c_void, len: size_t, prot: c_int, flags: c_int, fd: c_int, offset: off_t) -> *mut c_void
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.mprotect.html b/libc/funcs/posix88/mman/fn.mprotect.html new file mode 100644 index 0000000..5a13e8c --- /dev/null +++ b/libc/funcs/posix88/mman/fn.mprotect.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::mprotect - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::mprotect + + [] + + [src]

+
pub unsafe extern fn mprotect(addr: *mut c_void, len: size_t, prot: c_int) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.msync.html b/libc/funcs/posix88/mman/fn.msync.html new file mode 100644 index 0000000..f7eda34 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.msync.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::msync - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::msync + + [] + + [src]

+
pub unsafe extern fn msync(addr: *mut c_void, len: size_t, flags: c_int) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.munlock.html b/libc/funcs/posix88/mman/fn.munlock.html new file mode 100644 index 0000000..e3f56a2 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.munlock.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::munlock - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::munlock + + [] + + [src]

+
pub unsafe extern fn munlock(addr: *const c_void, len: size_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.munlockall.html b/libc/funcs/posix88/mman/fn.munlockall.html new file mode 100644 index 0000000..b2d8ab2 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.munlockall.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::munlockall - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::munlockall + + [] + + [src]

+
pub unsafe extern fn munlockall() -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.munmap.html b/libc/funcs/posix88/mman/fn.munmap.html new file mode 100644 index 0000000..abac8e0 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.munmap.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::munmap - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::munmap + + [] + + [src]

+
pub unsafe extern fn munmap(addr: *mut c_void, len: size_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.shm_open.html b/libc/funcs/posix88/mman/fn.shm_open.html new file mode 100644 index 0000000..9498267 --- /dev/null +++ b/libc/funcs/posix88/mman/fn.shm_open.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::shm_open - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::shm_open + + [] + + [src]

+
pub unsafe extern fn shm_open(name: *const c_char, oflag: c_int, mode: mode_t) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/fn.shm_unlink.html b/libc/funcs/posix88/mman/fn.shm_unlink.html new file mode 100644 index 0000000..3ccb4fb --- /dev/null +++ b/libc/funcs/posix88/mman/fn.shm_unlink.html @@ -0,0 +1,101 @@ + + + + + + + + + + libc::funcs::posix88::mman::shm_unlink - Rust + + + + + + + + + + + + + + + +
+

libc::funcs::posix88::mman::shm_unlink + + [] + + [src]

+
pub unsafe extern fn shm_unlink(name: *const c_char) -> c_int
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/index.html b/libc/funcs/posix88/mman/index.html new file mode 100644 index 0000000..8a11e02 --- /dev/null +++ b/libc/funcs/posix88/mman/index.html @@ -0,0 +1,182 @@ + + + + + + + + + + libc::funcs::posix88::mman - Rust + + + + + + + + + + + + + + + +
+

Module libc::funcs::posix88::mman + + [] + + [src]

+

Functions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
mlock + +
mlockall + +
mmap + +
mprotect + +
msync + +
munlock + +
munlockall + +
munmap + +
shm_open + +
shm_unlink + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libc/funcs/posix88/mman/sidebar-items.js b/libc/funcs/posix88/mman/sidebar-items.js new file mode 100644 index 0000000..d04cd4c --- /dev/null +++ b/libc/funcs/posix88/mman/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"fn":[["mlock",""],["mlockall",""],["mmap",""],["mprotect",""],["msync",""],["munlock",""],["munlockall",""],["munmap",""],["shm_open",""],["shm_unlink",""]]}); \ No newline at end of file -- cgit v1.2.3