| 83 | } |
| 84 | |
| 85 | static void* run_dump_thread(void* arg) { |
| 86 | butil::PlatformThread::SetNameSimple("bvar_collector_dumper"); |
| 87 | static_cast<Collector*>(arg)->dump_thread(); |
| 88 | return NULL; |
| 89 | } |
| 90 | |
| 91 | static int64_t get_pending_count(void* arg) { |
| 92 | Collector* d = static_cast<Collector*>(arg); |
nothing calls this directly
no test coverage detected