Simple wrapper to set thread name and run work queue */
| 315 | |
| 316 | /** Simple wrapper to set thread name and run work queue */ |
| 317 | static void HTTPWorkQueueRun(WorkQueue<HTTPClosure>* queue) |
| 318 | { |
| 319 | RenameThread("bitcoin-httpworker"); |
| 320 | queue->Run(); |
| 321 | } |
| 322 | |
| 323 | /** libevent event log callback */ |
| 324 | static void libevent_log_cb(int severity, const char *msg) |
nothing calls this directly
no test coverage detected