Simple wrapper to set thread name and run work queue */
| 352 | |
| 353 | /** Simple wrapper to set thread name and run work queue */ |
| 354 | static void HTTPWorkQueueRun(WorkQueue<HTTPClosure>* queue) { |
| 355 | RenameThread("coin-httpworker"); |
| 356 | queue->Run(); |
| 357 | } |
| 358 | |
| 359 | /** libevent event log callback */ |
| 360 | static void libevent_log_cb(int severity, const char* msg) { |
nothing calls this directly
no test coverage detected