| 92 | } |
| 93 | |
| 94 | static void* UserCodeRunner(void* args) { |
| 95 | butil::PlatformThread::SetNameSimple("brpc_user_code_runner"); |
| 96 | static_cast<UserCodeBackupPool*>(args)->UserCodeRunningLoop(); |
| 97 | return NULL; |
| 98 | } |
| 99 | |
| 100 | int UserCodeBackupPool::Init() { |
| 101 | // Like bthread workers, these threads never quit (to avoid potential hang |
nothing calls this directly
no test coverage detected