| 317 | } |
| 318 | |
| 319 | void *proctl_monitor_thread(void *arg) |
| 320 | { |
| 321 | const char *myname = "proctl_monitor_thread"; |
| 322 | ACL_VSTREAM *sstream; |
| 323 | char ebuf[256]; |
| 324 | |
| 325 | sstream = local_listen(); |
| 326 | if (sstream == NULL) |
| 327 | acl_msg_fatal("%s(%d): local_listen return NULL, error(%s)", |
| 328 | myname, __LINE__, acl_last_strerror(ebuf, sizeof(ebuf))); |
| 329 | proctl_monitor_loop(sstream); |
| 330 | |
| 331 | /* unreached */ |
| 332 | return (NULL); |
| 333 | } |
| 334 | |
| 335 | #endif /* ACL_WINDOWS */ |
| 336 |
nothing calls this directly
no test coverage detected
searching dependent graphs…