| 428 | } |
| 429 | |
| 430 | static void CallMethodInBackupThread(void* void_args) { |
| 431 | CallMethodInBackupThreadArgs* args = (CallMethodInBackupThreadArgs*)void_args; |
| 432 | ProcessThriftFramedRequestNoExcept(args->service, |
| 433 | args->controller, |
| 434 | args->request, |
| 435 | args->response, |
| 436 | args->done); |
| 437 | delete args; |
| 438 | } |
| 439 | |
| 440 | static void EndRunningCallMethodInPool(ThriftService* service, |
| 441 | Controller* controller, |
nothing calls this directly
no test coverage detected