Changeset 45293 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Apr 2, 2013 6:42:50 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84691
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmcritsectrw.h
r45153 r45293 54 54 VMMR3DECL(int) PDMR3CritSectRwDelete(PPDMCRITSECTRW pCritSect); 55 55 VMMR3DECL(const char *) PDMR3CritSectRwName(PCPDMCRITSECTRW pCritSect); 56 VMMR3DECL(int) PDMR3CritSectRwEnterSharedEx(PPDMCRITSECTRW pThis, bool fCallRing3); 57 VMMR3DECL(int) PDMR3CritSectRwEnterExclEx(PPDMCRITSECTRW pThis, bool fCallRing3); 56 58 57 59 VMMDECL(int) PDMCritSectRwEnterShared(PPDMCRITSECTRW pCritSect, int rcBusy); -
trunk/include/VBox/vmm/vmm.h
r45097 r45293 82 82 /** Acquire the critical section specified as argument. */ 83 83 VMMCALLRING3_PDM_CRIT_SECT_ENTER, 84 /** Enter the R/W critical section (in argument) exclusively. */ 85 VMMCALLRING3_PDM_CRIT_SECT_RW_ENTER_EXCL, 86 /** Enter the R/W critical section (in argument) shared. */ 87 VMMCALLRING3_PDM_CRIT_SECT_RW_ENTER_SHARED, 84 88 /** Acquire the PGM lock. */ 85 89 VMMCALLRING3_PGM_LOCK,
Note:
See TracChangeset
for help on using the changeset viewer.