diff options
Diffstat (limited to 'libgo/runtime/runtime.c')
-rw-r--r-- | libgo/runtime/runtime.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libgo/runtime/runtime.c b/libgo/runtime/runtime.c index 1a7c3c7..4f9909b 100644 --- a/libgo/runtime/runtime.c +++ b/libgo/runtime/runtime.c @@ -282,9 +282,11 @@ static struct { const char* name; int32* value; } dbgvar[] = { + {"allocfreetrace", &runtime_debug.allocfreetrace}, + {"efence", &runtime_debug.efence}, {"gctrace", &runtime_debug.gctrace}, - {"schedtrace", &runtime_debug.schedtrace}, {"scheddetail", &runtime_debug.scheddetail}, + {"schedtrace", &runtime_debug.schedtrace}, }; void |