diff options
| author | Alastair Reid | 2018-07-23 17:32:23 +0100 |
|---|---|---|
| committer | Alastair Reid | 2018-07-23 17:33:10 +0100 |
| commit | 8114501b7b956ee4a98fa8599c7efee62fc19206 (patch) | |
| tree | 8d3a35769f35f0f6e9ea09ae60b51b7e3764c89c /lib/rts.c | |
| parent | 13ca82515d512a4fb9bbc5cdd9ea1dd0803e9ad5 (diff) | |
RTS: make g_cycle_count public
This allows debug messages to include the current cycle count
which can be useful for debugging.
Diffstat (limited to 'lib/rts.c')
| -rw-r--r-- | lib/rts.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ #include"elf.h" static uint64_t g_elf_entry; -static uint64_t g_cycle_count = 0; +uint64_t g_cycle_count = 0; static uint64_t g_cycle_limit; void sail_match_failure(sail_string msg) |
