- Timestamp:
- Jan 26, 2009 6:06:59 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r16216 r16244 7756 7756 int error; 7757 7757 RTStrUtf8ToCurrentCP (&configFileCP, configFile); 7758 key_t key = ::ftok (configFileCP, 0);7758 key_t key = ::ftok (configFileCP, 'V'); 7759 7759 RTStrFree (configFileCP); 7760 7760 mIPCSem = ::semget (key, 1, S_IRWXU | S_IRWXG | S_IRWXO | IPC_CREAT); -
trunk/src/VBox/Main/SessionImpl.cpp
r15834 r16244 959 959 char *pszSemName = NULL; 960 960 RTStrUtf8ToCurrentCP (&pszSemName, semName); 961 key_t key = ::ftok (pszSemName, 0);961 key_t key = ::ftok (pszSemName, 'V'); 962 962 RTStrFree (pszSemName); 963 963
Note:
See TracChangeset
for help on using the changeset viewer.