1
2
3
4
5
6
7
8
9
10
11 declare FS_OPERATIONS (22) char (64) unaligned init (
12
13 "add_acl_entries",
14 "add_extended_acl_entries",
15 "chname_file",
16 "copy",
17 "delentry_file",
18 "delete_acl_entries",
19 "get_bit_count",
20 "get_max_length",
21 "get_ring_brackets",
22 "get_switch",
23 "get_user_access_modes",
24 "list_acl",
25 "list_extended_acl",
26 "list_switches",
27 "replace_acl",
28 "replace_extended_acl",
29 "set_bit_count",
30 "set_max_length",
31 "set_ring_brackets",
32 "set_switch",
33 "suffix_info",
34 "validate"
35 ) int static options (constant);
36
37 declare HIGHEST_FS_OPERATION_INDEX fixed bin init (22) int static options (constant);
38
39 declare FS_STANDARD_TYPES (5) char (32) int static options (constant) init (
40
41 "-directory",
42 "-dm_file",
43 "-link",
44 "-multisegment_file",
45 "-segment"
46 );
47
48 declare HIGHEST_FS_STANDARD_TYPE_INDEX fixed bin init (5) int static options (constant);
49
50