Changeset 32084 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 30, 2010 11:30:21 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/FTM.cpp
r32057 r32084 938 938 939 939 VMSTATE enmVMState = VMR3GetState(pVM); 940 AssertMsgReturn(enmVMState == VMSTATE_ POWERING_ON,940 AssertMsgReturn(enmVMState == VMSTATE_CREATED, 941 941 ("%s\n", VMR3GetStateName(enmVMState)), 942 942 VERR_INTERNAL_ERROR_4); … … 959 959 960 960 rc = RTThreadCreate(NULL, ftmR3MasterThread, pVM, 961 0, RTTHREADTYPE_IO /* higher than normal priority */, 0, "ftm R3MasterThread");961 0, RTTHREADTYPE_IO /* higher than normal priority */, 0, "ftmMaster"); 962 962 if (RT_FAILURE(rc)) 963 963 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.