1 /* Begin include file system_privileges.incl.pl1  BIM 84-05-07 */
 2 
 3 /* Numerical indices and names of the privileges. Bit strings
 4    live in aim_privileges.incl.pl1 */
 5 
 6 /* format: style3 */
 7 
 8 declare   (
 9           IPC_PRIVILEGE_X     init (1),
10           DIR_PRIVILEGE_X     init (2),
11           SEG_PRIVILEGE_X     init (3),
12           SOOS_PRIVILEGE_X    init (4),
13           RING1_PRIVILEGE_X   init (5),
14           RCP_PRIVILEGE_X     init (6),
15           COMM_PRIVILEGE_X    init (7),
16           LAST_PRIVILEGE_X    init (7)
17           )                   fixed bin int static options (constant);
18 
19 declare   1 system_privilege_names
20                               (7) aligned internal static options (constant),
21             2 long            char (40)
22                               init ("IPC", "directory", "segment", "security out of service", "ring one", "RCP",
23                               "communications"),
24             2 short           char (8) init ("ipc", "dir", "seg", "soos", "ring1", "rcp", "comm");
25 
26 /* End include file system_privileges.incl.pl1 */
27 
28