http://se.aminet.net/pub/X11/ftp.x.org/contrib/vms/xscreensaver-124.zip
[xscreensaver] / driver / resource.h
1 #ifndef __sys_resource_h
2
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 #include <sys/time.h>
8
9 #define __sys_resource_h 1
10
11 int getrusage(int, struct rusage*);
12 int getrlimit (int resource, struct rlimit *rlp);
13 #ifndef VMS
14 int setrlimit _G_ARGS((int resource, const struct rlimit *rlp));
15 #endif
16 long      ulimit(int, long);
17 int       getpriority(int, int);
18 int       setpriority(int, int, int);
19
20 #ifdef __cplusplus
21 }
22 #endif
23
24 #endif