added some alive_sleep()'s

git-svn-id: svn://svn.berlios.de/openocd/trunk@940 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
oharboe 2008-08-19 13:53:43 +00:00
parent 000f17c137
commit 0960cbeedd
6 changed files with 7 additions and 7 deletions

View File

@ -382,7 +382,7 @@ int arm720t_soft_reset_halt(struct target_s *target)
break;
}
/* do not eat all CPU, time out after 1 se*/
usleep(100*1000);
alive_sleep(100);
}
if (i==10)
{

View File

@ -536,7 +536,7 @@ int arm7_9_execute_sys_speed(struct target_s *target)
if ((buf_get_u32(dbg_stat->value, EICE_DBG_STATUS_DBGACK, 1))
&& (buf_get_u32(dbg_stat->value, EICE_DBG_STATUS_SYSCOMP, 1)))
break;
usleep(100000);
alive_sleep(100);
}
if (timeout == 50)
{

View File

@ -644,7 +644,7 @@ int arm920t_soft_reset_halt(struct target_s *target)
break;
}
/* do not eat all CPU, time out after 1 se*/
usleep(100*1000);
alive_sleep(100);
}
if (i==10)
{

View File

@ -594,7 +594,7 @@ int arm926ejs_soft_reset_halt(struct target_s *target)
break;
}
/* do not eat all CPU, time out after 1 se*/
usleep(100*1000);
alive_sleep(100);
}
if (i==10)
{

View File

@ -556,7 +556,7 @@ int armv4_5_run_algorithm(struct target_s *target, int num_mem_params, mem_param
while (target->state != TARGET_HALTED)
{
usleep(10000);
alive_sleep(10);
target_poll(target);
if ((timeout_ms -= 10) <= 0)
{
@ -565,7 +565,7 @@ int armv4_5_run_algorithm(struct target_s *target, int num_mem_params, mem_param
timeout_ms = 1000;
while (target->state != TARGET_HALTED)
{
usleep(10000);
alive_sleep(10);
target_poll(target);
if ((timeout_ms -= 10) <= 0)
{

View File

@ -2505,7 +2505,7 @@ int handle_profile_command(struct command_context_s *cmd_ctx, char *cmd, char **
samples[numSamples++]=t;
retval = target_resume(target, 1, 0, 0, 0); /* current pc, addr = 0, do not handle breakpoints, not debugging */
target_poll(target);
usleep(10*1000); // sleep 10ms, i.e. <100 samples/second.
alive_sleep(10); // sleep 10ms, i.e. <100 samples/second.
} else if (target->state == TARGET_RUNNING)
{
// We want to quickly sample the PC.