1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00
Beef/BeefRT/dbg/DbgThread.h

19 lines
311 B
C
Raw Normal View History

2019-08-23 11:56:54 -07:00
#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;
};