Browse Source

Audit and eliminate redundant helper #include directives.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1706 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
zwelch 15 years ago
parent
commit
8a5b25790f
11 changed files with 11 additions and 69 deletions
  1. +0
    -5
      src/helper/binarybuffer.c
  2. +1
    -9
      src/helper/command.c
  3. +9
    -10
      src/helper/command.h
  4. +0
    -5
      src/helper/configuration.c
  5. +0
    -1
      src/helper/configuration.h
  6. +0
    -11
      src/helper/fileio.c
  7. +1
    -8
      src/helper/fileio.h
  8. +0
    -8
      src/helper/log.c
  9. +0
    -2
      src/helper/log.h
  10. +0
    -7
      src/helper/options.c
  11. +0
    -3
      src/helper/time_support.c

+ 0
- 5
src/helper/binarybuffer.c View File

@@ -24,12 +24,7 @@
#include "config.h"
#endif

#include <stdlib.h>
#include <string.h>

#include "types.h"
#include "log.h"

#include "binarybuffer.h"

const unsigned char bit_reverse_table256[] =


+ 1
- 9
src/helper/command.c View File

@@ -30,22 +30,14 @@
#include "config.h"
#endif

#include "replacements.h"
// @todo the inclusion of target.h here is a layering violation
#include "target.h"
#include "command.h"
#include "configuration.h"

#include "log.h"
#include "time_support.h"
#include "jim-eventloop.h"

#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>

int fast_and_dangerous = 0;
Jim_Interp *interp = NULL;


+ 9
- 10
src/helper/command.h View File

@@ -23,7 +23,16 @@
#ifndef COMMAND_H
#define COMMAND_H

/* Integrate the JIM TCL interpretor into the command processing. */
#if BUILD_ECOSBOARD
#include <stdio.h>
#include <stdarg.h>
/* Jim is provied by eCos */
#include <cyg/jimtcl/jim.h>
#else
#define JIM_EMBEDDED
#include "jim.h"
#endif

enum command_mode
{
@@ -87,16 +96,6 @@ extern void process_jim_events(void);

extern int fast_and_dangerous;

/* Integrate the JIM TCL interpretor into the command processing. */
#include <stdarg.h>
#if BUILD_ECOSBOARD
/* Jim is provied by eCos */
#include <cyg/jimtcl/jim.h>
#else
#define JIM_EMBEDDED
#include "jim.h"
#endif

extern Jim_Interp *interp;

void register_jim(command_context_t *context, const char *name, int (*cmd)(Jim_Interp *interp, int argc, Jim_Obj *const *argv), const char *help);


+ 0
- 5
src/helper/configuration.c View File

@@ -24,14 +24,9 @@
#include "config.h"
#endif

#include "types.h"
#include "command.h"
#include "configuration.h"
#include "log.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static size_t num_config_files;
static char** config_file_names;


+ 0
- 1
src/helper/configuration.h View File

@@ -24,7 +24,6 @@
#define CONFIGURATION_H

#include "command.h"
#include "types.h"

extern int parse_cmdline_args(struct command_context_s *cmd_ctx, int argc, char *argv[]);
extern int parse_config_file(struct command_context_s *cmd_ctx);


+ 0
- 11
src/helper/fileio.c View File

@@ -27,21 +27,10 @@
#include "config.h"
#endif

#include "types.h"
#include "replacements.h"
#include "log.h"
#include "configuration.h"

#include "fileio.h"

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <errno.h>
#include <ctype.h>

static inline int fileio_open_local(fileio_t *fileio)
{
char access[4];


+ 1
- 8
src/helper/fileio.h View File

@@ -28,14 +28,7 @@

#define FILEIO_MAX_ERROR_STRING (128)

#include "types.h"

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <errno.h>
#include <ctype.h>
#include "replacements.h"

enum fileio_type
{


+ 0
- 8
src/helper/log.c View File

@@ -27,18 +27,10 @@
#include "config.h"
#endif

#include "replacements.h"

#include "log.h"
#include "configuration.h"
#include "time_support.h"
#include "command.h"
#include "server.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdarg.h>

#ifdef _DEBUG_FREE_SPACE_


+ 0
- 2
src/helper/log.h View File

@@ -29,8 +29,6 @@
#include "replacements.h"
#include "command.h"

#include <stdarg.h>

/* logging priorities
* LOG_LVL_SILENT - turn off all output. In lieu of try+catch this can be used as a
* feeble ersatz.


+ 0
- 7
src/helper/options.c View File

@@ -24,18 +24,11 @@
#include "config.h"
#endif

#include "replacements.h"

#include "types.h"
#include "command.h"
#include "configuration.h"
#include "log.h"
#include "server.h"

#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <string.h>

static int help_flag, version_flag;



+ 0
- 3
src/helper/time_support.c View File

@@ -27,12 +27,9 @@
#include "config.h"
#endif

#include "replacements.h"
#include "time_support.h"
#include "log.h"

#include <stdlib.h>


/* calculate difference between two struct timeval values */
int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y)


Loading…
Cancel
Save