summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-08-01 09:45:22 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-08-01 09:45:22 +0000
commit7d244761461701e1161df32c2f1d4cd50ae2bb26 (patch)
tree9adfc28cb669a838c338af1f5d6203ca92cc4c7b /src/openocd.c
parent1341eb3b0aea74b939a5d7702f696b175d032647 (diff)
downloadopenocd+libswd-7d244761461701e1161df32c2f1d4cd50ae2bb26.tar.gz
openocd+libswd-7d244761461701e1161df32c2f1d4cd50ae2bb26.tar.bz2
openocd+libswd-7d244761461701e1161df32c2f1d4cd50ae2bb26.tar.xz
openocd+libswd-7d244761461701e1161df32c2f1d4cd50ae2bb26.zip
- allow building for MinGW using either -mno-cygwin or the MinGW gcc
- added GiveIO support to the amt_jtagaccel driver - explicitly disable loopback mode for FT2232 devices - changed configuration options n[st]rst_delay to jtag_n[st]rst_delay - shutdown network services on exit git-svn-id: svn://svn.berlios.de/openocd/trunk@80 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 53ff4548..b078958e 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -18,7 +18,7 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#define OPENOCD_VERSION "Open On-Chip Debugger (2006-07-30 13:30 CEST)"
+#define OPENOCD_VERSION "Open On-Chip Debugger (2006-08-01 12:00 CEST)"
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -115,6 +115,9 @@ int main(int argc, char *argv[])
/* handle network connections */
server_loop(cmd_ctx);
+ /* shut server down */
+ server_quit();
+
/* free commandline interface */
command_done(cmd_ctx);