| 1771 | |
| 1772 | #if defined(USE_ONE_SIGNAL_HAND) |
| 1773 | pthread_handler_t kill_server_thread(void *arg MY_ATTRIBUTE((unused))) |
| 1774 | { |
| 1775 | my_thread_init(); // Initialize new thread |
| 1776 | kill_server(0); |
| 1777 | /* purecov: begin deadcode */ |
| 1778 | my_thread_end(); |
| 1779 | pthread_exit(0); |
| 1780 | return 0; |
| 1781 | /* purecov: end */ |
| 1782 | } |
| 1783 | #endif |
| 1784 | |
| 1785 |
nothing calls this directly
no outgoing calls
no test coverage detected