1 " ***********************************************************
2 " * *
3 " * Copyright, C Honeywell Information Systems Inc., 1982 *
4 " * *
5 " * Copyright c 1972 by Massachusetts Institute of *
6 " * Technology and Honeywell Information Systems, Inc. *
7 " * *
8 " ***********************************************************
9
10 name mailbox_
11
12
13 " Gate to the version 2 and later mailbox message segment facility
14
15 " Last modified: 02/01/79 W. Olin Sibert to convert from mexp to ALM.
16 " Modified: February 1983 by G. Palter to add validate, copy, compact_index, and
17 " compact_file entrypoints
18 " Modified: October 1983 by G. Palter to add get_uid_file and
19 " get_uid_index entrypoints
20 " Modified: November 1983 by G. Palter to add get_mode_file entrypoint
21 " Modified: 1984-10-11 BIM for general_read_* entrypoints
22 " Modified: 1985-04-22, BIM, new gate target.
23
24 include gate_macros
25
26 include stack_header
27 include stack_frame
28
29 gate_info
30
31
32 gate accept_wakeups_index,mseg_mbx_ms_gate_target_,accept_wakeups_index,4
33 gate add_index,mseg_mbx_ms_gate_target_,add_index,5
34 gate check_salv_bit_index,mseg_mbx_ms_gate_target_,check_salv_bit_index,4
35 gate chname_file,mseg_mbx_ms_gate_target_,chname,5
36 gate close,mseg_mbx_ms_gate_target_,close,2
37
38 gate compact_file,mseg_mbx_ms_gate_target_,compact_file,4
39 gate compact_index,mseg_mbx_ms_gate_target_,compact_index,3
40 gate copy,mseg_mbx_ms_gate_target_,copy,6
41 gate create,mseg_mbx_ms_gate_target_,create,3
42 gate delete,mseg_mbx_ms_gate_target_,delete_mseg,3
43
44 gate delete_index,mseg_mbx_ms_gate_target_,delete_index,3
45 gate get_message_count_index,mseg_mbx_ms_gate_target_,get_message_count_index,3
46 gate get_mode_file,mseg_mbx_ms_gate_target_,get_mode_file,4
47 gate get_mode_index,mseg_mbx_ms_gate_target_,get_mode_index,3
48 gate get_uid_file,mseg_mbx_ms_gate_target_,get_uid_file,4
49
50 gate get_uid_index,mseg_mbx_ms_gate_target_,get_uid_index,3
51 gate incremental_read_index,mseg_mbx_ms_gate_target_,incremental_read_index,6
52 gate mbx_acl_add,mseg_mbx_ms_gate_target_,ex_acl_add,5
53 gate mbx_acl_delete,mseg_mbx_ms_gate_target_,ex_acl_delete,6
54 gate mbx_acl_list,mseg_mbx_ms_gate_target_,ex_acl_list,6
55
56 gate mbx_acl_replace,mseg_mbx_ms_gate_target_,ex_acl_replace,5
57 gate open,mseg_mbx_ms_gate_target_,open,4
58 gate open_if_full,mseg_mbx_ms_gate_target_,open_if_full,6
59
60 gate read_message_index,mseg_mbx_ms_gate_target_,general_read_index,4
61 gate read_message_file,mseg_mbx_ms_gate_target_,general_read_file,5
62
63 gate own_incremental_read_index,mseg_mbx_ms_gate_target_,o_incremental_read_index,6
64 gate own_read_index,mseg_mbx_ms_gate_target_,o_read_index,5
65
66 gate read_delete_index,mseg_mbx_ms_gate_target_,read_delete_index,5
67 gate read_index,mseg_mbx_ms_gate_target_,read_index,5
68 gate set_max_length_file,mseg_mbx_ms_gate_target_,set_max_length_file,4
69 gate set_safety_switch,mseg_mbx_ms_gate_target_,set_safety_switch,4
70 gate update_message_index,mseg_mbx_ms_gate_target_,update_message_index,5
71
72 gate validate,mseg_mbx_ms_gate_target_,validate,3
73 gate wakeup_add_index,mseg_mbx_ms_gate_target_,wakeup_add_index,6
74 gate wakeup_aim_add_index,mseg_mbx_ms_gate_target_,wakeup_aim_add_index,7
75
76 end