Changeset 59207 in vbox
- Timestamp:
- Dec 22, 2015 9:39:20 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104833
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGF.cpp
r59205 r59207 1347 1347 */ 1348 1348 DBGFR3EVENTCONFIGEXARGS Args = { paConfigs, cConfigs, VINF_SUCCESS }; 1349 int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ASCENDING, dbgfR3EventConfigEx, &Args); 1349 int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ASCENDING | VMMEMTRENDEZVOUS_FLAGS_PRIORITY, 1350 dbgfR3EventConfigEx, &Args); 1350 1351 if (RT_SUCCESS(rc)) 1351 1352 rc = Args.rc; … … 1572 1573 */ 1573 1574 DBGFR3INTERRUPTCONFIGEXARGS Args = { paConfigs, cConfigs, VINF_SUCCESS }; 1574 int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ASCENDING, dbgfR3InterruptConfigEx, &Args); 1575 int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ASCENDING | VMMEMTRENDEZVOUS_FLAGS_PRIORITY, 1576 dbgfR3InterruptConfigEx, &Args); 1575 1577 if (RT_SUCCESS(rc)) 1576 1578 rc = Args.rc;
Note:
See TracChangeset
for help on using the changeset viewer.