aboutsummaryrefslogtreecommitdiff
path: root/src/server
AgeCommit message (Expand)AuthorFilesLines
2009-12-03fix regressions with GDB port numbersZachary T Welch1-3/+11
2009-12-03remove tertiary include pathsZachary T Welch1-4/+0
2009-12-03change #include "server.h" to <server/server.h>Zachary T Welch2-2/+2
2009-12-03change #include "flash.h" to <flash/flash.h>Zachary T Welch1-1/+1
2009-12-03change #include "target_request.h" to <target/target_request.h>Zachary T Welch2-2/+2
2009-12-03change #include "target.h" to <target/target.h>Zachary T Welch2-2/+2
2009-12-03change #include "register.h" to <target/register.h>Zachary T Welch1-1/+1
2009-12-03change #include "image.h" to <target/image.h>Zachary T Welch1-1/+1
2009-12-03change #include "breakpoints.h" to <target/breakpoints.h>Zachary T Welch1-1/+1
2009-12-03change #include "jtag.h" to <jtag/jtag.h>Zachary T Welch1-1/+1
2009-12-03change #include "log.h" to <helper/log.h>Zachary T Welch2-2/+2
2009-12-02stubs: buildfixDavid Brownell1-0/+1
2009-12-02remove #if BUILD_HTTPDZachary T Welch2-0/+33
2009-12-02remove #if logic for openocd_sleep_*ludeZachary T Welch3-0/+45
2009-11-30remove interp global variable!Zachary T Welch1-1/+1
2009-11-30do not extern 'interp' from command.cZachary T Welch5-13/+20
2009-11-30move server_init() to openocd_main()Zachary T Welch1-1/+15
2009-11-30improve gdb_init() sequenceZachary T Welch2-34/+48
2009-11-26fix typos in source filesUwe Hermann3-8/+8
2009-11-25target: create and use target_name()David Brownell1-5/+5
2009-11-25target: target_get_name() --> target_type_name()David Brownell1-2/+2
2009-11-24httpd: use register_commands()Zachary T Welch3-15/+49
2009-11-24server: use register_commandsZachary T Welch4-45/+95
2009-11-24use COMMAND_REGISTER macroZachary T Welch4-10/+10
2009-11-24improve startup tcl scriptsZachary T Welch1-0/+2
2009-11-18use COMMAND_PARSE_ENABLE macro where appropriateZachary T Welch1-42/+3
2009-11-18split startup.tcl file across modulesZachary T Welch2-0/+9
2009-11-17command_handler: change 'cmd_ctx' to CMD_CTXZachary T Welch2-2/+2
2009-11-17command_handler: change 'args' to CMD_ARGVZachary T Welch3-15/+15
2009-11-17command_handler: change to 'argc' to CMD_ARGCZachary T Welch2-7/+7
2009-11-17target: simplify register get/set opsDavid Brownell1-9/+2
2009-11-16rename CEIL as DIV_ROUND_UPZachary T Welch1-11/+11
2009-11-16#include "target.h" less wildlyDavid Brownell2-3/+1
2009-11-16target: don't implicitly include "breakpoint.h"David Brownell1-0/+1
2009-11-14add openocd.h for top-level declarationsZachary T Welch2-3/+2
2009-11-13command_context_t -> struct command_contextZachary T Welch8-16/+16
2009-11-13flash_bank_t -> struct flash_bankZachary T Welch1-7/+7
2009-11-13target_t -> struct targetZachary T Welch2-22/+22
2009-11-13reg_t -> struct regZachary T Welch1-6/+6
2009-11-13image_t -> struct imageZachary T Welch2-3/+3
2009-11-13reg_arch_type_t -> struct reg_arch_typeZachary T Welch1-2/+2
2009-11-13connection_t -> struct connectionZachary T Welch5-67/+67
2009-11-13telnet_connection_t -> struct telnet_connectionZachary T Welch2-10/+10
2009-11-13tcl_connection_t -> struct tcl_connectionZachary T Welch1-7/+7
2009-11-13service_t -> struct serviceZachary T Welch2-14/+14
2009-11-13telnet_service_t -> struct telnet_serviceZachary T Welch2-4/+4
2009-11-13gdb_service_t -> struct gdb_serviceZachary T Welch2-10/+10
2009-11-13gdb_connection_t -> struct gdb_connectionZachary T Welch2-21/+21
2009-11-13use CALL_COMMAND_HANDLER instead of direct callsZachary T Welch3-3/+3
2009-11-13use COMMAND_HELPER for command helper functionsZachary T Welch2-4/+11