mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
19 lines
311 B
C
19 lines
311 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "../rt/Thread.h"
|
||
|
#include "gc.h"
|
||
|
|
||
|
namespace tcmalloc_obj
|
||
|
{
|
||
|
class ThreadCache;
|
||
|
}
|
||
|
|
||
|
class BfDbgInternalThread : public BfInternalThread
|
||
|
{
|
||
|
public:
|
||
|
BfDbgInternalThread();
|
||
|
virtual ~BfDbgInternalThread();
|
||
|
virtual void ThreadStarted() override;
|
||
|
virtual void ThreadStopped() override;
|
||
|
};
|