Skip to content
Snippets Groups Projects
Commit 33682ec4 authored by ntfreak's avatar ntfreak
Browse files

- correct BUILD_ECOSBOARD definition is server.c

git-svn-id: svn://svn.berlios.de/openocd/trunk@896 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent d203582a
Branches
No related tags found
No related merge requests found
......@@ -306,7 +306,7 @@ int server_loop(command_context_t *command_context)
}
#ifndef _WIN32
#ifndef BUILD_ECOSBOARD
#if BUILD_ECOSBOARD == 0
/* add STDIN to read_fds */
FD_SET(fileno(stdin), &read_fds);
#endif
......@@ -400,7 +400,7 @@ int server_loop(command_context_t *command_context)
}
#ifndef _WIN32
#ifndef BUILD_ECOSBOARD
#if BUILD_ECOSBOARD == 0
if (FD_ISSET(fileno(stdin), &read_fds))
{
if (getc(stdin) == 'x')
......@@ -455,7 +455,6 @@ int server_init(void)
signal(SIGBREAK, sig_handler);
signal(SIGABRT, sig_handler);
#endif
return ERROR_OK;
}
......@@ -487,5 +486,3 @@ int handle_shutdown_command(struct command_context_s *cmd_ctx, char *cmd, char *
return ERROR_COMMAND_CLOSE_CONNECTION;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment