- Timestamp:
- Jun 1, 2010 3:06:02 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SSM.cpp
r29250 r29954 2836 2836 } 2837 2837 } 2838 2839 if (!ASMAtomicReadBool(&pStrm->fTerminating)) 2840 RTSemEventSignal(pStrm->hEvtFree); 2838 2841 } 2839 2842 else … … 2863 2866 } 2864 2867 } 2868 2869 if (!ASMAtomicReadBool(&pStrm->fTerminating)) 2870 RTSemEventSignal(pStrm->hEvtHead); 2865 2871 } 2866 2872 … … 5416 5422 return rc; 5417 5423 5418 if (pSSM->enmAfter != SSMAFTER_DEBUG_IT )5419 AssertMsgFailed (("SSM: attempted reading more than the unit!\n"));5420 return VERR_SSM_ LOADED_TOO_MUCH;5424 if (pSSM->enmAfter != SSMAFTER_DEBUG_IT && rc == VERR_EOF) 5425 AssertMsgFailedReturn(("SSM: attempted reading more than the unit! rc=%Rrc\n", rc), VERR_SSM_LOADED_TOO_MUCH); 5426 return VERR_SSM_STREAM_ERROR; 5421 5427 } 5422 5428
Note:
See TracChangeset
for help on using the changeset viewer.