diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-12-01 08:41:41 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-12-01 09:53:23 +0100 |
commit | 5576a6240a103879e1a8d9d4c2b6ff4aee0d23fa (patch) | |
tree | 7f817159a2a8c6dea9dee3cb9f0cc84b90b8eb86 /src/helper | |
parent | 63dc352876259562948b5d814de197ba534897b9 (diff) | |
download | openocd+libswd-5576a6240a103879e1a8d9d4c2b6ff4aee0d23fa.tar.gz openocd+libswd-5576a6240a103879e1a8d9d4c2b6ff4aee0d23fa.tar.bz2 openocd+libswd-5576a6240a103879e1a8d9d4c2b6ff4aee0d23fa.tar.xz openocd+libswd-5576a6240a103879e1a8d9d4c2b6ff4aee0d23fa.zip |
command: the Jim interpreter can now be provided rather than created
In embedded hosts, the Jim interpreter can come from the
existing context rather than be created by OpenOCD.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/command.c | 18 | ||||
-rw-r--r-- | src/helper/command.h | 6 |
2 files changed, 15 insertions, 9 deletions
diff --git a/src/helper/command.c b/src/helper/command.c index dcad6a19..d6576684 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -1272,7 +1272,7 @@ static const struct command_registration command_builtin_handlers[] = { COMMAND_REGISTRATION_DONE }; -struct command_context* command_init(const char *startup_tcl) +struct command_context* command_init(const char *startup_tcl, Jim_Interp *interp) { struct command_context* context = malloc(sizeof(struct command_context)); const char *HostOs; @@ -1284,14 +1284,18 @@ struct command_context* command_init(const char *startup_tcl) context->output_handler_priv = NULL; #if !BUILD_ECOSBOARD - Jim_InitEmbedded(); - /* Create an interpreter */ - context->interp = Jim_CreateInterp(); - /* Add all the Jim core commands */ - Jim_RegisterCoreCommands(context->interp); + /* Create a jim interpreter if we were not handed one */ + if (interp == NULL) + { + Jim_InitEmbedded(); + /* Create an interpreter */ + interp = Jim_CreateInterp(); + /* Add all the Jim core commands */ + Jim_RegisterCoreCommands(interp); + } #endif + context->interp = interp; - Jim_Interp *interp = context->interp; #if defined(_MSC_VER) /* WinXX - is generic, the forward * looking problem is this: diff --git a/src/helper/command.h b/src/helper/command.h index 611db873..8d68c183 100644 --- a/src/helper/command.h +++ b/src/helper/command.h @@ -323,9 +323,11 @@ void command_set_output_handler(struct command_context* context, int command_context_mode(struct command_context *context, enum command_mode mode); /** - * Creates a new command context using the startup TCL provided. + * Creates a new command context using the startup TCL provided and + * the existing Jim interpreter, if any. If interp == NULL, then command_init + * creates a command interpreter. */ -struct command_context* command_init(const char *startup_tcl); +struct command_context* command_init(const char *startup_tcl, Jim_Interp *interp); /** * Creates a copy of an existing command context. This does not create * a deep copy of the command list, so modifications in one context will |