use alive_sleep() from sleep command

git-svn-id: svn://svn.berlios.de/openocd/trunk@939 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-08-19 12:18:00 +00:00
parent 8d0e3395a0
commit 000f17c137

View File

@ -693,7 +693,7 @@ int handle_sleep_command(struct command_context_s *cmd_ctx, char *cmd, char **ar
if (argc == 1)
{
duration = strtoul(args[0], NULL, 0);
usleep(duration * 1000);
alive_sleep(duration);
}
return ERROR_OK;