Add fields that point to per-cpu interrupt data.

This commit is contained in:
Jake Burkholder 2001-08-10 04:18:48 +00:00
parent db6c479810
commit 0cb2d36969
2 changed files with 6 additions and 0 deletions

View file

@ -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_ */

View file

@ -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_ */