Changeset 5061 in vbox
- Timestamp:
- Sep 26, 2007 5:15:30 PM (17 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r4475 r5061 4508 4508 Assert (semId >= 0 && semId < cnt); 4509 4509 if (semId >= 0 && semId < cnt) 4510 { 4511 LogFlowFunc (("released mutex: machine='%ls'\n", 4512 machines [semId]->userData()->mName.raw())); 4510 4513 machines [semId]->checkForDeath(); 4514 } 4511 4515 update = true; 4512 4516 } … … 4529 4533 Assert (i >= 0 && i < cnt); 4530 4534 if (i >= 0 && i < cnt) 4535 { 4536 LogFlowFunc (("mutex owner dead: machine='%ls'\n", 4537 machines [i]->userData()->mName.raw())); 4531 4538 machines [i]->checkForDeath(); 4539 } 4532 4540 } 4533 4541 } -
trunk/src/VBox/Main/linux/server_module.cpp
r4475 r5061 167 167 168 168 #ifdef RT_OS_OS2 169 char * const args[] = { VBoxSVCPath, "--automate", 0 };169 char * const args[] = { VBoxSVCPath, "--automate", 0 }; 170 170 /* use NSPR because we want the process to be detached right 171 * at startup (it isn't possible to detach it later on) */ 171 * at startup (it isn't possible to detach it later on), 172 * RTProcCreate() isn't yet capable of doing that. */ 172 173 PRStatus rv = PR_CreateProcessDetached (VBoxSVCPath, 173 args, NULL, 0);174 args, NULL, NULL); 174 175 if (rv != PR_SUCCESS) 175 176 {
Note:
See TracChangeset
for help on using the changeset viewer.