From 4088b1e622cff0673f2859de5ee611da736bdba7 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Sat, 14 Nov 2009 07:29:16 -0800 Subject: [PATCH] add openocd.h for top-level declarations 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. --- src/Makefile.am | 4 ++++ src/ecosboard.c | 1 + src/main.c | 3 +-- src/{main.c => openocd.h} | 37 ++++++++++++++++++------------------- src/server/Makefile.am | 1 + src/server/server.c | 4 +--- 6 files changed, 26 insertions(+), 24 deletions(-) copy src/{main.c => openocd.h} (65%) diff --git a/src/Makefile.am b/src/Makefile.am index 7721f3401..77ae5ae2e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -16,6 +16,10 @@ libopenocd_la_SOURCES = \ hello.c \ openocd.c +noinst_HEADERS = \ + openocd.h + + # set the include path found by configure AM_CPPFLAGS = \ -I$(top_srcdir)/src \ diff --git a/src/ecosboard.c b/src/ecosboard.c index 38f32525a..e38316cb7 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -36,6 +36,7 @@ #include "server.h" #include "telnet_server.h" #include "gdb_server.h" +#include "openocd.h" #include #include diff --git a/src/main.c b/src/main.c index c2b53da6e..a71977daf 100644 --- a/src/main.c +++ b/src/main.c @@ -22,6 +22,7 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif +#include "openocd.h" /* This is the main entry for developer PC hosted OpenOCD. * @@ -32,8 +33,6 @@ * Those applications will have their own main() implementation * and use bits and pieces from openocd.c. */ -extern int openocd_main(int argc, char *argv[]); - int main(int argc, char *argv[]) { return openocd_main(argc, argv); diff --git a/src/main.c b/src/openocd.h similarity index 65% copy from src/main.c copy to src/openocd.h index c2b53da6e..1bf6b7e6f 100644 --- a/src/main.c +++ b/src/openocd.h @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (C) 2005 by Dominic Rath * - * Dominic.Rath@gmx.de * + * Copyright (C) 2005 by Dominic Rath * + * Copyright (C) 2009 by Zachary T Welch * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -18,23 +18,22 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#ifndef OPENOCD_H +#define OPENOCD_H -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -/* This is the main entry for developer PC hosted OpenOCD. - * - * OpenOCD can also be used as a library that is linked with - * another application(not mainstream yet, but possible), e.g. - * w/as an embedded application. - * - * Those applications will have their own main() implementation - * and use bits and pieces from openocd.c. */ +/** + * Different applications can define this entry point to override + * the default openocd main function. On most systems, this will be + * defined in src/openocd.c. + * @param argc normally passed from main() + * @param argv normally passed from main() + * @returns return code for main() + */ +int openocd_main(int argc, char *argv[]); -extern int openocd_main(int argc, char *argv[]); +/// used by the server_loop() function in src/server/server.c +void openocd_sleep_prelude(void); +/// used by the server_loop() function in src/server/server.c +void openocd_sleep_postlude(void); -int main(int argc, char *argv[]) -{ - return openocd_main(argc, argv); -} +#endif diff --git a/src/server/Makefile.am b/src/server/Makefile.am index 2f0700757..6e52fdfb8 100644 --- a/src/server/Makefile.am +++ b/src/server/Makefile.am @@ -1,4 +1,5 @@ AM_CPPFLAGS = \ + -I$(top_srcdir)/src \ -I$(top_srcdir)/src/helper \ -I$(top_srcdir)/src/target \ -I$(top_srcdir)/src/flash \ diff --git a/src/server/server.c b/src/server/server.c index 7416784c7..92292eb59 100644 --- a/src/server/server.c +++ b/src/server/server.c @@ -29,6 +29,7 @@ #include "server.h" #include "target.h" +#include "openocd.h" #include @@ -285,9 +286,6 @@ int remove_services(void) return ERROR_OK; } -extern void openocd_sleep_prelude(void); -extern void openocd_sleep_postlude(void); - int server_loop(struct command_context *command_context) { struct service *service; -- 2.11.4.GIT