- Timestamp:
- Oct 24, 2010 4:21:10 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r33386 r33396 9788 9788 aMachine->mData->mUuid.raw()); 9789 9789 mIPCSemName = ipcSem; 9790 APIRET arc = ::DosCreateMutexSem((PSZ)ipcSem. raw(), &mIPCSem, 0, FALSE);9790 APIRET arc = ::DosCreateMutexSem((PSZ)ipcSem.c_str(), &mIPCSem, 0, FALSE); 9791 9791 ComAssertMsgRet(arc == NO_ERROR, 9792 9792 ("Cannot create IPC mutex '%s', arc=%ld", 9793 ipcSem. raw(), arc),9793 ipcSem.c_str(), arc), 9794 9794 E_FAIL); 9795 9795 #elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER) -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r33386 r33396 1139 1139 /** @todo: account for version in the URL */ 1140 1140 if (aUrl != NULL) 1141 Utf8Str(firmwareDesc[i].url).cloneTo(aUrl); 1141 { 1142 Utf8Str strUrl(firmwareDesc[i].url); 1143 strUrl.cloneTo(aUrl); 1144 } 1142 1145 *aResult = FALSE; 1143 1146 … … 3958 3961 if (semId >= 0 && semId < cnt) 3959 3962 { 3960 #if def DEBUG3963 #if 0//def DEBUG 3961 3964 { 3962 3965 AutoReadLock machineLock(machines[semId] COMMA_LOCKVAL_SRC_POS); … … 3987 3990 if (i >= 0 && i < cnt) 3988 3991 { 3989 #if def DEBUG3992 #if 0//def DEBUG 3990 3993 { 3991 3994 AutoReadLock machineLock(machines[semId] COMMA_LOCKVAL_SRC_POS); … … 4028 4031 machines.clear(); 4029 4032 4030 for (MachinesOList::iterator it = that->m-> llMachines.begin();4031 it != that->m-> llMachines.end(); ++ it)4033 for (MachinesOList::iterator it = that->m->allMachines.begin(); 4034 it != that->m->allMachines.end(); ++ it) 4032 4035 { 4033 4036 /// @todo handle situations with more than 64 objects … … 4066 4069 spawnedMachines.clear(); 4067 4070 4068 for (MachinesOList::iterator it = that->m-> llMachines.begin();4069 it != that->m-> llMachines.end(); ++ it)4071 for (MachinesOList::iterator it = that->m->allMachines.begin(); 4072 it != that->m->allMachines.end(); ++ it) 4070 4073 { 4071 4074 if ((*it)->isSessionSpawning()) -
trunk/src/VBox/Main/cbinding/VBoxXPCOMCGlue.c
r32394 r33396 206 206 if (tryLoadOne("/usr/local/lib/virtualbox", 1) == 0) 207 207 return 0; 208 #elif defined(__OS2__) 209 if (tryLoadOne("C:/Apps/VirtualBox", 1) == 0) 210 return 0; 208 211 #else 209 212 # error "port me" -
trunk/src/VBox/Main/xml/Settings.cpp
r33386 r33396 4208 4208 return AudioDriverType_CoreAudio; 4209 4209 #elif defined(RT_OS_OS2) 4210 return AudioDriverType_MMP ;4210 return AudioDriverType_MMPM; 4211 4211 #elif defined(RT_OS_FREEBSD) 4212 4212 return AudioDriverType_OSS;
Note:
See TracChangeset
for help on using the changeset viewer.