aboutsummaryrefslogtreecommitdiff
path: root/src/openocd.h
AgeCommit message (Collapse)AuthorFilesLines
2013-06-05update files to correct FSF addressSpencer Oliver1-1/+1
Change-Id: I429f7fd51f77b0e7c86d7a7f110ca31afd76c173 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/1426 Tested-by: jenkins Reviewed-by: Paul Fertser <fercerpav@gmail.com>
2012-02-06build: cleanup src/ directorySpencer Oliver1-2/+2
Change-Id: Ia6ed99ce75625ad6ef5e0d3c3bbdc1c1bec21df3 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/407 Tested-by: jenkins
2009-12-02remove #if logic for openocd_sleep_*ludeZachary T Welch1-5/+0
Adds server_stubs.c to hold these routines, using automake logic to ensure it gets included under the right conditions.
2009-11-18fix segfault at startupZachary T Welch1-1/+1
The previous changes to move the startup TCL code resulted in segfaults during startup. This seemingly innocuous patch fixes the problem. I would explain why changing from 'foo[]' to '*foo' caused this issue, but the difference seems superficial. For now, this hot fix will do, but this issue might bear further scrutiny.
2009-11-18pass startup_tcl to command_initZachary T Welch1-0/+3
Removes external linkage from helper module, making the startup code a parameter to a new command context's initialization routine.
2009-11-14add openocd.h for top-level declarationsZachary T Welch1-0/+39
Create src/openocd.h to hold declarations previously made internally by src/main.c and src/server/server.c. This ensures all functions are verified to be in-sync at compile time (rather than at link), making it easier to track down bugs.