MCPcopy Create free account
hub / github.com/antirez/ds4 / id_list_free

Function id_list_free

ds4_server.c:8324–8328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8322
8323 va_list ap;
8324 va_start(ap, fmt);
8325 va_list copy;
8326 va_copy(copy, ap);
8327 int n = vsnprintf(NULL, 0, fmt, copy);
8328 va_end(copy);
8329
8330 pthread_mutex_lock(&server_log_mu);
8331 fprintf(stderr, "%s ", ts);

Calls 1

stop_list_clearFunction · 0.85