diff options
Diffstat (limited to 'klibc/include/sys/resource.h')
-rw-r--r-- | klibc/include/sys/resource.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/klibc/include/sys/resource.h b/klibc/include/sys/resource.h new file mode 100644 index 0000000000..ef14bde9f6 --- /dev/null +++ b/klibc/include/sys/resource.h @@ -0,0 +1,15 @@ +/* + * sys/resource.h + */ + +#ifndef _SYS_RESOURCE_H +#define _SYS_RESOURCE_H + +#include <klibc/extern.h> +#include <sys/types.h> /* MUST be included before linux/resource.h */ +#include <linux/resource.h> + +__extern int getpriority(int, int); +__extern int setpriority(int, int, int); + +#endif /* _SYS_RESOURCE_H */ |