~ubuntu-branches/ubuntu/vivid/virtualbox-ose/vivid

« back to all changes in this revision

Viewing changes to src/VBox/Additions/common/VBoxService/VBoxService.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2010-03-11 17:16:37 UTC
  • mfrom: (0.3.4 upstream) (0.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100311171637-43z64ia3ccpj8vqn
Tags: 3.1.4-dfsg-2ubuntu1
* Merge from Debian unstable (LP: #528561), remaining changes:
  - VirtualBox should go in Accessories, not in System tools (LP: #288590)
    - debian/virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add Apport hook
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Add Launchpad integration
    - debian/control
    - debian/lpi-bug.xpm
    - debian/patches/u02-lp-integration.dpatch
  - Replace *-source packages with transitional packages for *-dkms
* Fix crash in vboxvideo_drm with kernel 2.6.33 / backported drm code
  (LP: #535297)
* Add a list of linux-headers packages to the apport hook
* Update debian/patches/u02-lp-integration.dpatch with a
  DEP-3 compliant header
* Add ${misc:Depends} to virtualbox-ose-source and virtualbox-ose-guest-source
  Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#endif
31
31
#include <errno.h>
32
32
 
33
 
#include <iprt/thread.h>
 
33
#include <iprt/asm.h>
 
34
#include <iprt/buildconfig.h>
 
35
#include <iprt/initterm.h>
 
36
#include <iprt/path.h>
34
37
#include <iprt/string.h>
35
38
#include <iprt/stream.h>
36
 
#include <iprt/initterm.h>
37
 
#include <iprt/asm.h>
38
 
#include <iprt/path.h>
 
39
#include <iprt/thread.h>
 
40
 
 
41
#include <VBox/VBoxGuestLib.h>
39
42
#include <VBox/log.h>
40
 
#include <VBox/VBoxGuestLib.h>
 
43
 
41
44
#include "VBoxServiceInternal.h"
42
45
 
43
46
 
549
552
    if (iMain == ~0U)
550
553
        return VBoxServiceSyntax("At least one service must be enabled.\n");
551
554
 
552
 
    VBoxServiceVerbose(0, "Started. Verbose level = %d\n", g_cVerbosity);
 
555
    VBoxServiceVerbose(0, "%s r%s started. Verbose level = %d\n",
 
556
        RTBldCfgVersion(), RTBldCfgRevisionStr(), g_cVerbosity);
553
557
 
554
558
    /*
555
559
     * Daemonize if requested.