diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2022-01-16 16:39:24 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2022-01-16 16:42:48 +0000 |
commit | 4cc6b8d2a645e68fa2605b98dd753fd34ddb5146 (patch) | |
tree | 577e21a7a432ca696ea58ef60f8a10d345dbe634 /mixlib | |
parent | 6cada17360a242837f9174c08d9822e908450ed0 (diff) | |
download | mdk-4cc6b8d2a645e68fa2605b98dd753fd34ddb5146.tar.gz mdk-4cc6b8d2a645e68fa2605b98dd753fd34ddb5146.tar.bz2 |
Fix: missing MIX_CMD_SBT
Thanks to Kevin Sun.
Diffstat (limited to 'mixlib')
-rw-r--r-- | mixlib/mix_vm_command.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mixlib/mix_vm_command.h b/mixlib/mix_vm_command.h index bd5fb19..9e96f28 100644 --- a/mixlib/mix_vm_command.h +++ b/mixlib/mix_vm_command.h @@ -1,7 +1,7 @@ /* -*-c-*- ---------------- mix_vm_command.h : * declarations for mix_vm_command_t, describing commands issued to a vm * ------------------------------------------------------------------ - * Copyright (C) 2001, 2006, 2007, 2014 Free Software Foundation, Inc. + * Copyright (C) 2001, 2006, 2007, 2014, 2022 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -75,6 +75,7 @@ typedef enum { MIX_CMD_W2D, /* print word in decimal notation */ MIX_CMD_STRACE, /* enable/disable instruction traces */ MIX_CMD_PBT, /* print backtrace */ + MIX_CMD_SBT, /* set backtrace limit */ MIX_CMD_STIME, /* enable/disable timing statistics */ MIX_CMD_PTIME, /* print current time statistics */ MIX_CMD_SDDIR, /* set device directory */ |