1 /*  START OF:       abs_io_handler_node.incl.pl1            */
 2 
 3 /* Contains info on one exec_com &on unit */
 4 /* Initially coded 01/06/83 S. Herbst */
 5 
 6 dcl handler_node_ptr ptr;
 7 
 8 dcl 1 handler_node aligned based (handler_node_ptr),
 9    2 ptr ptr,                                               /* -> text of &on unit */
10    2 len fixed bin (21),                                    /* length of &on unit text */
11    2 condition_name char (32),
12    2 next_ptr ptr;                                          /* forward thread */
13 
14 /* END OF:          abs_io_handler_node.incl.pl1            */