summaryrefslogtreecommitdiff
path: root/src/helper/command.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-18 05:02:08 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-18 15:51:07 -0800
commitc0d14dc7f19d785702eee5f69de5b1a63902554b (patch)
treee93e58120b0a5829e6cf1f1581f4467bc78c1ce7 /src/helper/command.h
parent20218b8de61dea545c7575f36e1b74b9599c9848 (diff)
downloadopenocd+libswd-c0d14dc7f19d785702eee5f69de5b1a63902554b.tar.gz
openocd+libswd-c0d14dc7f19d785702eee5f69de5b1a63902554b.tar.bz2
openocd+libswd-c0d14dc7f19d785702eee5f69de5b1a63902554b.tar.xz
openocd+libswd-c0d14dc7f19d785702eee5f69de5b1a63902554b.zip
remove fast command and jim_global_long
Removing the fast command eliminates the fast_and_dangerous global, which was used only by arm7_9_common as an initializer. The command is not called in the tree; instead, more explicit commands are used. The jim_global_long function was not used anywhere in the tree.
Diffstat (limited to 'src/helper/command.h')
-rw-r--r--src/helper/command.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/helper/command.h b/src/helper/command.h
index a2e97970..def0935a 100644
--- a/src/helper/command.h
+++ b/src/helper/command.h
@@ -214,15 +214,11 @@ void process_jim_events(void);
#define ERROR_COMMAND_ARGUMENT_OVERFLOW (-604)
#define ERROR_COMMAND_ARGUMENT_UNDERFLOW (-605)
-extern int fast_and_dangerous;
-
extern Jim_Interp *interp;
void register_jim(struct command_context *context, const char *name,
Jim_CmdProc cmd, const char *help);
-long jim_global_long(const char *variable);
-
int parse_ulong(const char *str, unsigned long *ul);
int parse_ullong(const char *str, unsigned long long *ul);