Changeset 33396 in vbox for trunk/src/VBox/Main/MachineImpl.cpp
- Timestamp:
- Oct 24, 2010 4:21:10 PM (14 years ago)
- File:
-
- 1 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)
Note:
See TracChangeset
for help on using the changeset viewer.