| 440 | } |
| 441 | |
| 442 | void DbgProfiler::Start() |
| 443 | { |
| 444 | BF_ASSERT(!mIsRunning); |
| 445 | |
| 446 | mNeedsProcessing = true; |
| 447 | mIsRunning = true; |
| 448 | auto thread = BfpThread_Create(ThreadProcThunk, (void*)this, 128 * 1024, BfpThreadCreateFlag_StackSizeReserve); |
| 449 | BfpThread_Release(thread); |
| 450 | } |
| 451 | |
| 452 | void DbgProfiler::Stop() |
| 453 | { |
no test coverage detected