| 405 | } |
| 406 | |
| 407 | void xs_worker_postfromworker(xsMachine *the) |
| 408 | { |
| 409 | modWorker worker = xsmcGetHostDataValidate(xsThis, (void *)xs_emptyworker_destructor); |
| 410 | char *message; |
| 411 | |
| 412 | if (worker->closing) |
| 413 | xsUnknownError("worker closing"); |
| 414 | |
| 415 | message = xsMarshall(xsArg(0)); |
| 416 | doModMessagePostToMachine(the, worker->parent, message, (modMessageDeliver)workerDeliverMarshall, worker); |
| 417 | } |
| 418 | |
| 419 | void xs_worker_close(xsMachine *the) |
| 420 | { |
nothing calls this directly
no test coverage detected