MCPcopy Create free account
hub / github.com/acl-dev/acl / proctl_monitor_thread

Function proctl_monitor_thread

lib_acl/src/proctl/proctl_monitor.c:319–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317}
318
319void *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

Callers

nothing calls this directly

Calls 4

local_listenFunction · 0.85
acl_msg_fatalFunction · 0.85
acl_last_strerrorFunction · 0.85
proctl_monitor_loopFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…