1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 12:02:14 +00:00

TIMER: Add debug support for MUX clock co-scheduling

This commit is contained in:
Mark Pizzolato
2015-12-08 16:56:34 -08:00
parent dac6633237
commit ac9e19e250
2 changed files with 15 additions and 12 deletions

View File

@@ -88,8 +88,9 @@ int clock_gettime(int clock_id, struct timespec *tp);
#define SIM_THROT_PCT 3 /* Max Percent of host CPU */
#define SIM_THROT_SPC 4 /* Specific periodic Delay */
#define TIMER_DBG_IDLE 1 /* Debug Flag for Idle Debugging */
#define TIMER_DBG_QUEUE 2 /* Debug Flag for Asynch Queue Debugging */
#define TIMER_DBG_IDLE 0x001 /* Debug Flag for Idle Debugging */
#define TIMER_DBG_QUEUE 0x002 /* Debug Flag for Asynch Queue Debugging */
#define TIMER_DBG_MUX 0x004 /* Debug Flag for Asynch Queue Debugging */
t_bool sim_timer_init (void);
void sim_timespec_diff (struct timespec *diff, struct timespec *min, struct timespec *sub);