1 /* BEGIN INCLUDE FILE - dm_system_states.incl.pl1 */ 2 3 /* DESCRIPTION: 4 5 This include file contains the structure for getting all the 6 information from dm_system_data_ about the caretaker Daemon of a DMS. 7 The caller recieveing the info from the inner ring routine must set 8 version to prevent its storage from being trashed. 9 */ 10 11 /* HISTORY: 12 Written by Lee A. Newcomb, 03/22/84. 13 Modified: 14 */ 15 /* format: style4,indattr,ifthenstmt,ifthen,idind33,^indcomtxt */ 16 17 dcl dm_daemon_info_ptr ptr; 18 dcl DM_DAEMON_INFO_VERSION_1 char (8) init ("DMDMNIF1") options (constant) int static; 19 20 dcl 1 dm_daemon_info aligned based (dm_daemon_info_ptr), 21 2 version char (8), 22 2 event_channel fixed bin (71), 23 2 process_id bit (36), 24 2 wakeup_increment fixed bin, 25 2 user_id char (32), 26 2 command_ms_name char (32); 27 28 /* END INCLUDE FILE - dm_daemon_info.incl.pl1 */