diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2010-03-08 19:10:05 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2010-03-08 19:10:05 -0800 |
commit | c986cc200cb7e0904a200992e1288007aa4c8c07 (patch) | |
tree | 2162e4ddcc7fe22cf622ffdb4b89b4b98a7f6350 | |
parent | fc1063a1b9df5857ee3f1c18f88e5b821b5f0960 (diff) | |
download | openocd+libswd-c986cc200cb7e0904a200992e1288007aa4c8c07.tar.gz openocd+libswd-c986cc200cb7e0904a200992e1288007aa4c8c07.tar.bz2 openocd+libswd-c986cc200cb7e0904a200992e1288007aa4c8c07.tar.xz openocd+libswd-c986cc200cb7e0904a200992e1288007aa4c8c07.zip |
move a constant table to .rodata section
The table of command registration functions shouldn't be
in writable memory, where stray pointers can clobber it.
Also, it shouldn't be initialized at runtime; that just
consumes needless code space.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
-rw-r--r-- | src/openocd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c index a689d59c..78336068 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -202,7 +202,7 @@ struct command_context *setup_command_handler(Jim_Interp *interp) /* register subsystem commands */ typedef int (*command_registrant_t)(struct command_context *cmd_ctx); - command_registrant_t command_registrants[] = { + static const command_registrant_t command_registrants[] = { &openocd_register_commands, &server_register_commands, &gdb_register_commands, |