Profiler work

This commit is contained in:
Victor Olin 2023-03-08 15:04:12 +01:00
parent 0d376171c8
commit 7bb64c0489
5 changed files with 9 additions and 21 deletions

View file

@ -10,11 +10,6 @@ using namespace std;
namespace GC {
enum PrintTraceOptions {
Short,
Full
};
class Profiler {
private:
Profiler() { }
@ -33,6 +28,6 @@ namespace GC {
public:
static void record(GCEventType type);
static void record(GCEventType type, Chunk *chunk);
static void printTrace(PrintTraceOptions opt);
static void printTrace();
};
}