git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
renamed and cleaned up export header files to match linux convention
[lunaix-os.git]
/
lunaix-os
/
includes
/
lunaix
/
usercaps.h
1
#ifndef __LUNAIX_USERCAPS_H
2
#define __LUNAIX_USERCAPS_H
3
4
typedef unsigned long caps_t;
5
6
/*
7
* Definition of user capabilities (withdrawn draft POSIX.1e)
8
*/
9
10
#define CAP_SETUID 0
11
#define CAP_SETGID 1
12
#define CAP_CHOWN 2
13
#define CAP_DAC_OVERRIDE 3
14
#define CAP_FSETID 4
15
#define CAP_KILL 5
16
#define CAP_SYS_CHROOT 6
17
#define CAP_SYS_TIM 7
18
19
#endif /* __LUNAIX_USERCAPS_H */