diff options
Diffstat (limited to 'util/m5/m5ops.h')
-rw-r--r-- | util/m5/m5ops.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/m5/m5ops.h b/util/m5/m5ops.h index 51dcb5d07..99dc81251 100644 --- a/util/m5/m5ops.h +++ b/util/m5/m5ops.h @@ -77,6 +77,7 @@ #define syscall_func 0x60 // Reserved for user #define pagefault_func 0x61 // Reserved for user +#define togglesync_func 0x62 // These operations are for critical path annotation #define annotate_func 0x55 @@ -121,7 +122,8 @@ M5OP(m5_addsymbol, addsymbol_func, 0); \ M5OP(m5_panic, panic_func, 0); \ M5OP(m5_work_begin, work_begin_func, 0); \ - M5OP(m5_work_end, work_end_func, 0); + M5OP(m5_work_end, work_end_func, 0); \ + M5OP(m5_togglesync, togglesync_func, 0); #define FOREACH_M5_ANNOTATION \ M5_ANNOTATION(m5a_bsm, an_bsm); \ |