David Kuehling <dvdkhlng@gmx.de> - added jim-eventloop.c

git-svn-id: svn://svn.berlios.de/openocd/trunk@898 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe
2008-08-07 16:37:20 +00:00
parent 2cec23fc37
commit c76b0618d7
12 changed files with 728 additions and 2 deletions

View File

@@ -346,6 +346,7 @@ int server_loop(command_context_t *command_context)
}
target_call_timer_callbacks();
process_jim_events ();
if (retval == 0)
{
@@ -455,6 +456,7 @@ int server_init(void)
signal(SIGBREAK, sig_handler);
signal(SIGABRT, sig_handler);
#endif
return ERROR_OK;
}
@@ -486,3 +488,5 @@ int handle_shutdown_command(struct command_context_s *cmd_ctx, char *cmd, char *
return ERROR_COMMAND_CLOSE_CONNECTION;
}