| 38 | }; |
| 39 | |
| 40 | static void init(unsigned int max_threads, unsigned int flags = 0) { |
| 41 | assert(instance == NULL); |
| 42 | instance = new ThreadPoolManager(max_threads, flags); |
| 43 | } |
| 44 | |
| 45 | static ThreadPoolManager* getInstance() { |
| 46 | return instance; |
nothing calls this directly
no outgoing calls
no test coverage detected