Simple wrapper to set thread name and run work queue */
| 333 | |
| 334 | /** Simple wrapper to set thread name and run work queue */ |
| 335 | static void HTTPWorkQueueRun(WorkQueue<HTTPClosure>* queue) |
| 336 | { |
| 337 | RenameThread("bitcoin-httpworker"); |
| 338 | queue->Run(); |
| 339 | } |
| 340 | |
| 341 | /** libevent event log callback */ |
| 342 | static void libevent_log_cb(int severity, const char *msg) |
nothing calls this directly
no test coverage detected