1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 12:02:21 +02:00
Beef/BeefRT/dbg/DbgThread.h
2019-08-23 11:56:54 -07:00

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;
};