Skip to content
Snippets Groups Projects
Commit 0b467754 authored by Dan Burkert's avatar Dan Burkert
Browse files

Linux fallocate(2) bindings

parent c003614b
No related branches found
No related tags found
No related merge requests found
......@@ -281,6 +281,8 @@ extern {
offset: ::off64_t,
whence: ::c_int) -> ::c_int;
pub fn ftello64(stream: *mut ::FILE) -> ::off64_t;
pub fn fallocate(fd: ::c_int, mode: ::c_int,
offset: ::off_t, len: ::off_t) -> ::c_int;
}
cfg_if! {
......
......@@ -179,6 +179,9 @@ pub const SIGCHLD: ::c_int = 17;
pub const SIGBUS: ::c_int = 7;
pub const SIG_SETMASK: ::c_int = 2;
pub const FALLOC_FL_KEEP_SIZE: ::c_int = 0x01;
pub const FALLOC_FL_PUNCH_HOLE: ::c_int = 0x02;
extern {
pub fn getnameinfo(sa: *const ::sockaddr,
salen: ::socklen_t,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment