| 2045 | } |
| 2046 | |
| 2047 | void BFGC::ThreadStarted(BfDbgInternalThread* thread) |
| 2048 | { |
| 2049 | Beefy::AutoCrit autoCrit(mCritSect); |
| 2050 | |
| 2051 | //thread->mTCMallocObjThreadCache = tcmalloc_obj::ThreadCache::GetCache(); |
| 2052 | //mThreadList.push_back(thread); |
| 2053 | |
| 2054 | BFLOG2(GCLog::EVENT_THREAD_STARTED, (intptr)thread, (intptr)BfpThread_GetCurrentId()); |
| 2055 | |
| 2056 | //printf("ThreadStarted: %p intern:%p TID:%d\n", thread->mThread, thread, ::GetCurrentThreadId()); |
| 2057 | } |
| 2058 | |
| 2059 | void BFGC::ThreadStopped(BfDbgInternalThread* thread) |
| 2060 | { |
no test coverage detected