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

Added display of the measured sleep resolution to sim_show_idle and a call to sim_show_idle from the VAX cpu_show_idle routine.

This commit is contained in:
Mark Pizzolato
2011-09-19 14:49:45 -07:00
parent b36370413f
commit f1b638749f
2 changed files with 5 additions and 3 deletions

View File

@@ -629,7 +629,7 @@ return SCPE_OK;
t_stat sim_show_idle (FILE *st, UNIT *uptr, int32 val, void *desc)
{
if (sim_idle_enab)
fprintf (st, "idle enabled, stability wait = %ds", sim_idle_stable);
fprintf (st, "idle enabled, stability wait = %ds, minimum sleep resolution = %dms", sim_idle_stable, sim_idle_rate_ms);
else fputs ("idle disabled", st);
return SCPE_OK;
}