| 9424 | |
| 9425 | |
| 9426 | void JRD_send(thread_db* tdbb, Request* request, USHORT msg_type, ULONG msg_length, const void* msg) |
| 9427 | { |
| 9428 | /************************************** |
| 9429 | * |
| 9430 | * J R D _ s e n d |
| 9431 | * |
| 9432 | ************************************** |
| 9433 | * |
| 9434 | * Functional description |
| 9435 | * Get a record from the host program. |
| 9436 | * |
| 9437 | **************************************/ |
| 9438 | EXE_send(tdbb, request, msg_type, msg_length, msg); |
| 9439 | |
| 9440 | check_autocommit(tdbb, request); |
| 9441 | |
| 9442 | if (request->req_flags & req_warning) |
| 9443 | { |
| 9444 | request->req_flags &= ~req_warning; |
| 9445 | ERR_punt(); |
| 9446 | } |
| 9447 | } |
| 9448 | |
| 9449 | |
| 9450 | void JRD_start(Jrd::thread_db* tdbb, Request* request, jrd_tra* transaction) |
no test coverage detected