1 2 /* BEGIN INCLUDE FILE condition_envelope.incl.pl1 */ 3 4 /* This include file declares the envelope used to pass software */ 5 /* condition info via the Multics signalling mechanism. */ 6 7 /* Originally created by D. M. Wells, August 25, 1977. */ 8 9 declare 10 condition_envelope_version_1 initial (1) 11 fixed binary (17) internal static options (constant); 12 13 declare 14 1 condition_envelope aligned, 15 2 length fixed bin, 16 2 version fixed bin, 17 2 action_flags aligned, 18 3 cant_restart bit(1) unaligned, 19 3 default_restart bit(1) unaligned, 20 3 pad bit(34) unaligned, 21 2 info_string char(256) var, 22 2 status_code fixed bin(35); 23 24 /* END INCLUDE FILE condition_envelope.incl.pl1 */ 25