mirror of
https://github.com/simh/simh.git
synced 2026-05-05 07:23:34 +00:00
TIMER, SCP: Change the sim_activate_after APIs to pass the delay value as uint32.
Also change all sim_defs.h structure declarations and references of sim_ structures to use the typedef names everywhere.
This commit is contained in:
@@ -272,8 +272,8 @@ t_stat tmxr_show_cstat (FILE *st, UNIT *uptr, int32 val, void *desc);
|
||||
t_stat tmxr_show_lines (FILE *st, UNIT *uptr, int32 val, void *desc);
|
||||
t_stat tmxr_show_open_devices (FILE* st, DEVICE *dptr, UNIT* uptr, int32 val, char* desc);
|
||||
t_stat tmxr_activate (UNIT *uptr, int32 interval);
|
||||
t_stat tmxr_activate_after (UNIT *uptr, int32 usecs_walltime);
|
||||
t_stat tmxr_activate_after_abs (UNIT *uptr, int32 usecs_walltime);
|
||||
t_stat tmxr_activate_after (UNIT *uptr, uint32 usecs_walltime);
|
||||
t_stat tmxr_activate_after_abs (UNIT *uptr, uint32 usecs_walltime);
|
||||
t_stat tmxr_clock_coschedule (UNIT *uptr, int32 interval);
|
||||
t_stat tmxr_clock_coschedule_abs (UNIT *uptr, int32 interval);
|
||||
t_stat tmxr_clock_coschedule_tmr (UNIT *uptr, int32 tmr, int32 interval);
|
||||
|
||||
Reference in New Issue
Block a user