| 43 | |
| 44 | public: |
| 45 | MacThreadList() { |
| 46 | _task = mach_task_self(); |
| 47 | _thread_array = NULL; |
| 48 | task_threads(_task, &_thread_array, &_count); |
| 49 | } |
| 50 | |
| 51 | ~MacThreadList() { |
| 52 | deallocate(); |
nothing calls this directly
no outgoing calls
no test coverage detected