1
2
3
4
5
6
7
8
9
10
11
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