1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 11:46:37 +00:00

Cleanup for build on VMS

This commit is contained in:
Mark Pizzolato
2013-03-16 11:44:34 -07:00
parent c45a377c71
commit de483074e6
4 changed files with 14 additions and 8 deletions

View File

@@ -701,10 +701,10 @@ return (sim_idle_rate_ms != 0);
/* sim_timer_idle_capable - tell if the host is Idle capable and what the host OS tick size is */
uint32 sim_timer_idle_capable (uint32 *hoat_tick_ms)
uint32 sim_timer_idle_capable (uint32 *host_tick_ms)
{
if (hoat_tick_ms)
*hoat_tick_ms = sim_os_sleep_min_ms;
if (host_tick_ms)
*host_tick_ms = sim_os_sleep_min_ms;
return sim_idle_rate_ms;
}