diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2001-08-10 04:18:48 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2001-08-10 04:18:48 +0000 |
| commit | 0cb2d36969ec7dd5cbbd6eb6685eef766db3b0f0 (patch) | |
| tree | 1ad77a3423407b01bea5281ffc965d937945a9d3 | |
| parent | db6c479810eb8782d09613974c8114da5eada22f (diff) | |
Notes
| -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_ */ |
