| 559 | } |
| 560 | |
| 561 | void _hx_std_process_kill( Dynamic handle ) |
| 562 | { |
| 563 | vprocess *p = getProcess(handle); |
| 564 | |
| 565 | #ifdef NEKO_WINDOWS |
| 566 | TerminateProcess(p->pinf.hProcess, -1); |
| 567 | #else |
| 568 | kill(p->pid, SIGTERM); |
| 569 | #endif |
| 570 | } |
| 571 | |
| 572 | |
| 573 |
nothing calls this directly
no test coverage detected