1 /* BEGIN INCLUDE FILE ... mseg_format_errors_.incl.pl1 */
 2 /* Created:  April 1985 by G. Palter */
 3 
 4 /* format: style3,linecom */
 5 
 6 /* Standard system status codes corresponding to the possible errors which the message segment primitives can detect in
 7    the format of a message segment -- These errors are implemented as status codes to permit the use of
 8    admin_gate_$syserr_error_code to actually record the errors in the syserr log. */
 9 
10 declare   (
11           mseg_format_errors_$bad_descriptor_sentinel,
12           mseg_format_errors_$bad_mseg_sentinel,
13           mseg_format_errors_$bad_mseg_version,
14           mseg_format_errors_$circular_hash_chain,
15           mseg_format_errors_$circular_message_blocks,
16           mseg_format_errors_$circular_message_chain,
17           mseg_format_errors_$descriptor_in_other_block,
18           mseg_format_errors_$inconsistent_backward_chain,
19           mseg_format_errors_$inconsistent_block_map,
20           mseg_format_errors_$inconsistent_forward_chain,
21           mseg_format_errors_$inconsistent_hash_chain,
22           mseg_format_errors_$inconsistent_message_count,
23           mseg_format_errors_$inconsistent_message_length,
24           mseg_format_errors_$invalid_message_block_offset,
25           mseg_format_errors_$modification_in_progress,
26           mseg_format_errors_$negative_message_count,
27           mseg_format_errors_$no_descriptor_in_first_block,
28           mseg_format_errors_$salvage_in_progress,
29           mseg_format_errors_$unused_block_in_message
30           )                   fixed binary (35) external;
31 
32 /* END INCLUDE FILE ... mseg_format_errors_.incl.pl1 */