summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/fs/memfd_create.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/fs/memfd_create.rs')
-rw-r--r--vendor/rustix/src/fs/memfd_create.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/rustix/src/fs/memfd_create.rs b/vendor/rustix/src/fs/memfd_create.rs
index dad964777..bbcbab258 100644
--- a/vendor/rustix/src/fs/memfd_create.rs
+++ b/vendor/rustix/src/fs/memfd_create.rs
@@ -7,8 +7,12 @@ pub use backend::fs::types::MemfdFlags;
///
/// # References
/// - [Linux]
+/// - [glibc]
+/// - [FreeBSD]
///
/// [Linux]: https://man7.org/linux/man-pages/man2/memfd_create.2.html
+/// [glibc]: https://www.gnu.org/software/libc/manual/html_node/Memory_002dmapped-I_002fO.html#index-memfd_005fcreate
+/// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?memfd_create
#[inline]
pub fn memfd_create<P: path::Arg>(path: P, flags: MemfdFlags) -> io::Result<OwnedFd> {
path.into_with_c_str(|path| backend::fs::syscalls::memfd_create(path, flags))