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

Function log_argv

app/master/daemon/master/master_spawn.cpp:86–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86static void log_argv(const char *procname, ACL_ARGV *args)
87{
88 ACL_ITER iter;
89 ACL_VSTRING *buf = acl_vstring_alloc(128);
90
91 acl_foreach(iter, args) {
92 acl_vstring_strcat(buf, " ");
93 acl_vstring_strcat(buf, (char*) iter.data);
94 }
95
96 acl_msg_info("%s %s", procname, acl_vstring_str(buf));
97 acl_vstring_free(buf);
98}
99
100/* acl_master_spawn - spawn off new child process if we can */
101

Callers 1

start_childFunction · 0.85

Calls 3

acl_vstring_allocFunction · 0.85
acl_msg_infoFunction · 0.85
acl_vstring_freeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…