summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/fs/memfd_create.rs
blob: 74b4327399af8486a6e7f5e99c5a876478181e9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::io::{self, OwnedFd};
use crate::{imp, path};

pub use imp::fs::types::MemfdFlags;

/// `memfd_create(path, flags)`
///
/// # References
///  - [Linux]
///
/// [Linux]: https://man7.org/linux/man-pages/man2/memfd_create.2.html
#[inline]
pub fn memfd_create<P: path::Arg>(path: P, flags: MemfdFlags) -> io::Result<OwnedFd> {
    path.into_with_c_str(|path| imp::fs::syscalls::memfd_create(path, flags))
}