diff options
Diffstat (limited to 'lib/rts.c')
| -rw-r--r-- | lib/rts.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6,6 +6,8 @@ #include"rts.h" #include"elf.h" +static uint64_t g_elf_entry; + void sail_match_failure(sail_string msg) { fprintf(stderr, "Pattern match failure in %s\n", msg); @@ -236,6 +238,10 @@ void load_image(char *file) // ***** Tracing support ***** +static int64_t g_trace_depth; +//static int64_t g_trace_max_depth; +static bool g_trace_enabled; + unit enable_tracing(const unit u) { g_trace_depth = 0; |
