diff options
| -rw-r--r-- | sys/sparc64/include/globaldata.h | 3 | ||||
| -rw-r--r-- | sys/sparc64/include/pcpu.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sys/sparc64/include/globaldata.h b/sys/sparc64/include/globaldata.h index 796ebbcd5091..b3441dddcd48 100644 --- a/sys/sparc64/include/globaldata.h +++ b/sys/sparc64/include/globaldata.h @@ -43,6 +43,9 @@ struct globaldata { struct lock_list_entry *gd_spinlocks; struct timeval gd_switchtime; int gd_switchticks; + + struct intr_queue *gd_iq; + struct intr_vector *gd_ivt; }; #endif /* !_MACHINE_GLOBALDATA_H_ */ diff --git a/sys/sparc64/include/pcpu.h b/sys/sparc64/include/pcpu.h index 796ebbcd5091..b3441dddcd48 100644 --- a/sys/sparc64/include/pcpu.h +++ b/sys/sparc64/include/pcpu.h @@ -43,6 +43,9 @@ struct globaldata { struct lock_list_entry *gd_spinlocks; struct timeval gd_switchtime; int gd_switchticks; + + struct intr_queue *gd_iq; + struct intr_vector *gd_ivt; }; #endif /* !_MACHINE_GLOBALDATA_H_ */ |
