| 2444 | |
| 2445 | |
| 2446 | void jrd_tra::unlinkFromAttachment() |
| 2447 | { |
| 2448 | for (jrd_tra** ptr = &tra_attachment->att_transactions; *ptr; ptr = &(*ptr)->tra_next) |
| 2449 | { |
| 2450 | if (*ptr == this) |
| 2451 | { |
| 2452 | *ptr = tra_next; |
| 2453 | return; |
| 2454 | } |
| 2455 | } |
| 2456 | |
| 2457 | tra_abort("transaction to unlink is missing in the attachment"); |
| 2458 | } |
| 2459 | |
| 2460 | |
| 2461 | void jrd_tra::linkToAttachment(Attachment* attachment) |
no outgoing calls
no test coverage detected