1 
 2 /* BEGIN INCLUDE .......................imp_network_daemon............ */
 3 
 4 /* For IMP DIM */
 5 
 6 /* Following variables used in connection with Network Control Process */
 7 
 8 dcl 1 imp_data$net_daemon external aligned,
 9 
10     2 process_id bit (36) aligned,
11     2 wakeup_pending fixed bin,                             /* If non-zero a wakeup has been sent to the
12                                                                Network Control Process. */
13     2 event_ch fixed bin (71),
14     2 message fixed bin (71),                               /* Message in the wakeups */
15     2 last_wakeup_sent_time fixed bin (71),
16     2 total_wakeups fixed bin (34);
17 
18 dcl 1 imp_data$monitor external aligned,
19 
20     2 event_ch fixed bin (71),                              /* Event channel of the monitor process. */
21     2 process_id bit (36) aligned;                          /* Process id of the monitor process. */
22 
23 
24 /* END INCLUDE .........................imp_network_daemon............ */