2020-12-26 09:32:21 +09:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
2020-12-28 09:08:35 +09:00
|
|
|
|
2020-12-28 16:31:53 +09:00
|
|
|
#ifdef DEBUG
|
2020-12-28 09:08:35 +09:00
|
|
|
#define ENABLE_DEBUGGING
|
|
|
|
#define ENABLE_TRACING
|
2020-12-28 10:54:25 +09:00
|
|
|
#define ENABLE_SCAN_TRACING
|
2020-12-28 13:51:14 +09:00
|
|
|
#define ENABLE_STRESS_GC
|
2020-12-28 16:31:53 +09:00
|
|
|
#endif
|