1 /* BEGIN INCLUDE FILE...user_message_handles.incl.pl1 */ 2 3 4 /****^ HISTORY COMMENTS: 5 1) change(85-12-19,Herbst), approve(87-07-20,MCR7697), 6 audit(87-07-20,GDixon), install(87-08-04,MR12.1-1056): 7 Added SYSTEM_MESSAGE_HANDLE 8 2) change(86-06-30,Coren), approve(86-06-30,MCR7415), 9 audit(86-07-02,Margolin), install(86-07-11,MR12.0-1092): 10 Added USER_MESSAGE_LS_CONNECTION_INFO_HANDLE and 11 USER_MESSAGE_LS_CONNECTION_INFO_HANDLE_LOWER_18 for use by login servers. 12 END HISTORY COMMENTS */ 13 14 /* This include file defines "well-known" handles for as_user_messages, 15 i.e., each of the handles defined here will be used for a particular purpose, 16 and programs that expect to receive such messages will use the appropriate 17 handle to read them. 18 */ 19 20 dcl USER_MESSAGE_LS_CONNECTION_INFO_HANDLE initial ("000000000000777777777777"b3) /* connection_info sent by login server to newly created process */ 21 bit (72) aligned internal static options (constant); 22 23 dcl USER_MESSAGE_LS_CONNECTION_INFO_HANDLE_LOWER_18 initial ("777777"b3) /* allows upper 54 bits to be used for unique identifier */ 24 bit (18) aligned internal static options (constant); 25 26 dcl SYSTEM_MESSAGE_HANDLE initial ("770007700077000770007700"b3) /* for warn and dm_shut messages */ 27 bit (72) aligned internal static options (constant); 28 29 30 /* END INCLUDE FILE...user_message_handles.incl.pl1 */