| 57 | } |
| 58 | |
| 59 | void dapiOnAfterGC ( Context & ctx ) { |
| 60 | for_each_debug_agent([&]( const DebugAgentPtr & pAgent ){ |
| 61 | pAgent->onAfterGC(&ctx); |
| 62 | }); |
| 63 | } |
| 64 | |
| 65 | Context::Context(uint32_t stackSize, bool ph) : stack(stackSize) { |
| 66 | ref_count_magic = TRACK_PTR_CONTEXT; |
no test coverage detected