| 9022 | |
| 9023 | |
| 9024 | static Rtr* make_transaction( Rdb* rdb, USHORT id) |
| 9025 | { |
| 9026 | /************************************** |
| 9027 | * |
| 9028 | * m a k e _ t r a n s a c t i o n |
| 9029 | * |
| 9030 | ************************************** |
| 9031 | * |
| 9032 | * Functional description |
| 9033 | * Create a local transaction handle. |
| 9034 | * |
| 9035 | **************************************/ |
| 9036 | Rtr* transaction = FB_NEW Rtr; |
| 9037 | transaction->rtr_rdb = rdb; |
| 9038 | transaction->rtr_id = id; |
| 9039 | transaction->rtr_next = rdb->rdb_transactions; |
| 9040 | rdb->rdb_transactions = transaction; |
| 9041 | SET_OBJECT(rdb, transaction, id); |
| 9042 | |
| 9043 | return transaction; |
| 9044 | } |
| 9045 | |
| 9046 | |
| 9047 | static void mov_dsql_message(const UCHAR* from_msg, |
no outgoing calls
no test coverage detected