Changeset 108439 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 4, 2025 1:38:06 PM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 167813
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/GICInternal.h
r108427 r108439 230 230 /** Interrupt priorities. */ 231 231 uint8_t abIntrPriority[96]; 232 /** Flag indicating register write pending (GICR_CTLR.RWP). */233 bool fRegWritePending;234 232 #else 235 233 /** Interrupt Group 0 Register. */ … … 254 252 /** The control register (ICC_CTLR_EL1). */ 255 253 uint64_t uIccCtlr; 256 /** Flag whether group 0 interrupts are currently enabled. */257 bool fIrqGrp0Enabled;258 /** Flag whether group 1 interrupts are currently enabled. */259 bool fIrqGrp1Enabled;254 /** The running priorities caused by preemption. */ 255 uint8_t abRunningPriorities[256]; 256 /** The index to the current running priority. */ 257 uint8_t idxRunningPriority; 260 258 /** The current interrupt priority, only interrupts with a higher priority get signalled. */ 261 259 uint8_t bInterruptPriority; … … 264 262 /** The interrupt controller Binary Point Register for Group 1 interrupts. */ 265 263 uint8_t bBinaryPointGrp1; 266 /** The running priorities caused by preemption. */267 uint8_t abRunningPriorities[256];268 /** The index to the current running priority. */269 uint8_t idxRunningPriority;264 /** Flag whether group 0 interrupts are currently enabled. */ 265 bool fIrqGrp0Enabled; 266 /** Flag whether group 1 interrupts are currently enabled. */ 267 bool fIrqGrp1Enabled; 270 268 /** @} */ 271 269
Note:
See TracChangeset
for help on using the changeset viewer.