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

« back to all changes in this revision

Viewing changes to src/VBox/HostDrivers/Support/SUPLibInternal.h

  • 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:
51
51
# define SUPLIB_DLL_SUFF    ".so"
52
52
#endif
53
53
 
 
54
#ifdef RT_OS_SOLARIS
 
55
/** Number of dummy files to open (2:ip4, 1:ip6, 1:extra) see #4650 */
 
56
#define SUPLIB_FLT_DUMMYFILES 4
 
57
#endif
 
58
 
54
59
/** @def SUPLIB_EXE_SUFF
55
60
 * The (typical) executable suffix. */
56
61
#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
187
192
#elif defined(RT_OS_LINUX)
188
193
    /** Indicates whether madvise(,,MADV_DONTFORK) works. */
189
194
    bool                fSysMadviseWorks;
 
195
#elif defined(RT_OS_SOLARIS)
 
196
    /** Extra dummy file descriptors to prevent growing file-descriptor table on clean up (see #4650) */
 
197
    int                 hDummy[SUPLIB_FLT_DUMMYFILES];
190
198
#elif defined(RT_OS_WINDOWS)
191
199
#endif
192
200
} SUPLIBDATA;