VirtualBox

Changeset 5061 in vbox


Ignore:
Timestamp:
Sep 26, 2007 5:15:30 PM (17 years ago)
Author:
vboxsync
Message:

Main: More logging.

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/VirtualBoxImpl.cpp

    r4475 r5061  
    45084508                        Assert (semId >= 0 && semId < cnt);
    45094509                        if (semId >= 0 && semId < cnt)
     4510                        {
     4511                            LogFlowFunc (("released mutex: machine='%ls'\n",
     4512                                          machines [semId]->userData()->mName.raw()));
    45104513                            machines [semId]->checkForDeath();
     4514                        }
    45114515                        update = true;
    45124516                    }
     
    45294533                                Assert (i >= 0 && i < cnt);
    45304534                                if (i >= 0 && i < cnt)
     4535                                {
     4536                                    LogFlowFunc (("mutex owner dead: machine='%ls'\n",
     4537                                                  machines [i]->userData()->mName.raw()));
    45314538                                    machines [i]->checkForDeath();
     4539                                }
    45324540                            }
    45334541                        }
  • trunk/src/VBox/Main/linux/server_module.cpp

    r4475 r5061  
    167167
    168168#ifdef RT_OS_OS2
    169                 char *const args[] = { VBoxSVCPath, "--automate", 0 };
     169                char * const args[] = { VBoxSVCPath, "--automate", 0 };
    170170                /* 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. */
    172173                PRStatus rv = PR_CreateProcessDetached (VBoxSVCPath,
    173                                                         args, NULL, 0);
     174                                                        args, NULL, NULL);
    174175                if (rv != PR_SUCCESS)
    175176                {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette