Usermode - Heaps more headers in libposix/psocket/libc
[tpg/acess2.git] / Usermode / Libraries / libposix.so_src / include_exp / sys / resource.h
1 /*
2  * Acess2 POSIX Emulation
3  * - By John Hodge (thePowersGang)
4  *
5  * sys/resource.h
6  * - (XSI) Resource Operations
7  */
8 #ifndef _LIBPOSIX__SYS__RESOURCE_H_
9 #define _LIBPOSIX__SYS__RESOURCE_H_
10
11 #include <sys/time.h>   // struct timeval
12
13 // (get|set)priority(which)
14 enum
15 {
16         PRIO_PROCESS,
17         PRIO_PGRP,
18         PRIO_USER
19 };
20
21 typedef unsigned int    rlim_t;
22 #define RLIM_INFINITY   -1
23 #define RLIM_SAVED_MAX  -2
24 #define RLIM_SAVED_CUR  -3
25
26 struct rlimit
27 {
28         rlim_t  rlim_cur;
29         rlim_t  rlim_max;
30 };
31
32 struct rusage
33 {
34         struct timeval  ru_time;
35         struct timeval  ru_stime;
36 };
37
38 extern int      getpriority(int, id_t);
39 extern int      getrlimit(int, struct rlimit *);
40 extern int      getrusage(int, struct rusage *);
41 extern int      setpriority(int, id_t, int);
42 extern int      setrlimit(int, const struct rlimit *);
43
44 #endif
45

UCC git Repository :: git.ucc.asn.au