1 /* START OF: dm_lm_txn_deadlock_info.incl.pl1 * * * * * * * * * * * * * * * * * * * */ 2 3 /* DESCRIPTION: 4 5 Condition info for the Data Management transaction_deadlock condition. 6 This include file requires condition_info_header.incl.pl1 7 */ 8 9 /* HISTORY: 10 Written by BIM, 06/01/83. 11 Modified: 12 12/06/84 by Stanford S. Cox: Added description, added dm_lm to incl name. 13 02/05/85 by Stanford S. Cox: Chg condition name to transaction_deadlock_ 14 */ 15 /* format: style3,idind30 */ 16 17 declare txn_deadlock_info_ptr pointer; 18 declare 1 txn_deadlock_info aligned based (txn_deadlock_info_ptr), 19 2 header aligned like condition_info_header, 20 2 transaction_id bit (36) aligned, 21 2 file_uid bit (36) aligned, 22 2 control_interval fixed bin (27) aligned; 23 24 declare TXN_DEADLOCK_INFO_VERSION_1 fixed bin int static init (1) options (constant); 25 26 declare TXN_DEADLOCK_CONDITION_NAME char (32) init ("transaction_deadlock_") int static options (constant); 27 28 /* END OF: dm_lm_txn_deadlock_info.incl.pl1 * * * * * * * * * * * * * * * * * * * */