mirror of
https://github.com/simh/simh.git
synced 2026-04-30 13:31:36 +00:00
Reworked all asynch queues to always link using the unit a_next field instead of the next field.
This commit is contained in:
4
scp.c
4
scp.c
@@ -2923,7 +2923,7 @@ if (sim_wallclock_queue == QUEUE_LIST_END)
|
||||
else {
|
||||
fprintf (st, "%s wall clock event queue status, time = %.0f\n",
|
||||
sim_name, sim_time);
|
||||
for (uptr = sim_wallclock_queue; uptr != QUEUE_LIST_END; uptr = uptr->next) {
|
||||
for (uptr = sim_wallclock_queue; uptr != QUEUE_LIST_END; uptr = uptr->a_next) {
|
||||
if ((dptr = find_dev_from_unit (uptr)) != NULL) {
|
||||
fprintf (st, " %s", sim_dname (dptr));
|
||||
if (dptr->numunits > 1)
|
||||
@@ -2938,7 +2938,7 @@ else {
|
||||
if (sim_clock_cosched_queue != QUEUE_LIST_END) {
|
||||
fprintf (st, "%s clock (%s) co-schedule event queue status, time = %.0f\n",
|
||||
sim_name, sim_uname(sim_clock_unit), sim_time);
|
||||
for (uptr = sim_clock_cosched_queue; uptr != QUEUE_LIST_END; uptr = uptr->next) {
|
||||
for (uptr = sim_clock_cosched_queue; uptr != QUEUE_LIST_END; uptr = uptr->a_next) {
|
||||
if ((dptr = find_dev_from_unit (uptr)) != NULL) {
|
||||
fprintf (st, " %s", sim_dname (dptr));
|
||||
if (dptr->numunits > 1)
|
||||
|
||||
Reference in New Issue
Block a user