Changeset 40926 in vbox
- Timestamp:
- Apr 14, 2012 6:02:39 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77477
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInline.h
r40909 r40926 20 20 21 21 /** 22 * Calculates the next IRQ tag. 23 * 22 * Calculates the next IRQ tag. 23 * 24 24 * @returns IRQ tag. 25 * @param pVM The VM handle. 25 * @param pVM The VM handle. 26 26 * @param idTracer The ID of the source device. 27 27 */ … … 31 31 if (!uTag) 32 32 uTag++; 33 pVM->pdm.s.uIrqTag = uTag | (idTracer << 16);33 pVM->pdm.s.uIrqTag = uTag |= (idTracer << 16); 34 34 return uTag; 35 35 }
Note:
See TracChangeset
for help on using the changeset viewer.