Skip to content
Snippets Groups Projects
Commit 43ad09ee authored by Niels Sascha Reedijk's avatar Niels Sascha Reedijk
Browse files

Haiku: add [get/set]priority()

These methods were added in Haiku R1 beta 2.
parent 675352e5
No related branches found
No related tags found
No related merge requests found
......@@ -1292,6 +1292,9 @@ f! {
extern "C" {
pub fn getrlimit(resource: ::c_int, rlim: *mut ::rlimit) -> ::c_int;
pub fn setrlimit(resource: ::c_int, rlim: *const ::rlimit) -> ::c_int;
pub fn getpriority(which: ::c_int, who: id_t) -> ::c_int;
pub fn setpriority(which: ::c_int, who: id_t, priority: ::c_int) -> ::c_int;
pub fn utimensat(
fd: ::c_int,
path: *const ::c_char,
......
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