Correzioni rimaste indietro ed espansione funzioni del resolver.
[gapil.git] / listati / cap_user_header_t.h
1 #define _LINUX_CAPABILITY_VERSION_1  0x19980330
2 #define _LINUX_CAPABILITY_U32S_1     1
3
4 #define _LINUX_CAPABILITY_VERSION_2  0x20071026  /* deprecated - use v3 */
5 #define _LINUX_CAPABILITY_U32S_2     2
6
7 #define _LINUX_CAPABILITY_VERSION_3  0x20080522
8 #define _LINUX_CAPABILITY_U32S_3     2
9
10 typedef struct __user_cap_header_struct {
11         __u32 version;
12         int pid;
13 } *cap_user_header_t;
14  
15 typedef struct __user_cap_data_struct {
16         __u32 effective;
17         __u32 permitted;
18         __u32 inheritable;
19 } *cap_user_data_t;