mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
18 lines
311 B
C++
18 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;
|
|
};
|