1 2 /* "net_event_template.incl.pl1" -- include file to declare the */ 3 /* structure of an IPC event message as used in the Network I/O */ 4 /* System Interface Modules (IOSIMSs). */ 5 6 /* Originally created by D. M. Wells in April, 1974 */ 7 8 declare 9 1 event_message_template aligned based, 10 2 common, 11 3 channel_name fixed binary (71), 12 3 message bit (72) aligned, 13 3 sender bit (36) aligned, 14 3 origin unaligned, 15 4 devsignal fixed binary (17) unaligned, 16 4 ring fixed binary (17) unaligned, 17 2 channel_index fixed binary (17); 18 19 /* end of include file "net_event_template.incl.pl1" */ 20