1 /*  START OF:       dm_lm_txn_timeout_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 Stanford S. Cox, 02/05/84.
11 Modified:
12 */
13 
14 declare   txn_timeout_info_ptr          pointer;
15 declare   1 txn_timeout_info            aligned based (txn_timeout_info_ptr),
16             2 header                    aligned like condition_info_header,
17             2 transaction_id            bit (36) aligned,
18             2 file_uid                            bit (36) aligned,
19             2 control_interval          fixed bin (27) aligned,
20             2 give_up_time              fixed bin (71);
21 
22 declare   TXN_TIMEOUT_INFO_VERSION_1    fixed bin int static init (1) options (constant);
23 
24 declare   TXN_TIMEOUT_CONDITION_NAME    char (32) init ("transaction_lock_timeout_") int static options (constant);
25 
26 /*  END OF:         dm_lm_txn_timeout_info.incl.pl1           *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *   */