Changeset 14719 in vbox
- Timestamp:
- Nov 27, 2008 4:29:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r14679 r14719 977 977 switch (enmOperation) 978 978 { 979 /* These might/will be called before VMMR3Init. */ 979 980 case VMMR0_DO_GMM_INITIAL_RESERVATION: 980 981 case VMMR0_DO_GMM_UPDATE_RESERVATION: … … 985 986 case VMMR0_DO_GMM_MAP_UNMAP_CHUNK: 986 987 case VMMR0_DO_GMM_SEED_CHUNK: 987 /* these might/will be called before VMMR3Init. */ 988 if (!pVM->vmm.s.CallHostR0JmpBuf.pvSavedStack) 989 break; 988 /* On the mac we might not have a valid jmp buf, so check these as well. */ 990 989 case VMMR0_DO_VMMR0_INIT: 991 990 case VMMR0_DO_VMMR0_TERM: 992 991 { 992 if (!pVM->vmm.s.CallHostR0JmpBuf.pvSavedStack) 993 break; 994 993 995 /** @todo validate this EMT claim... GVM knows. */ 994 996 VMMR0ENTRYEXARGS Args;
Note:
See TracChangeset
for help on using the changeset viewer.