~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to include/VBox/log.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-01-30 23:27:25 UTC
  • mfrom: (0.3.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20110130232725-2ouajjd2ggdet0zd
Tags: 4.0.2-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Drop *-source packages.
* Drop ubuntu-01-fix-build-gcc45.patch, fixed upstream.
* Drop ubuntu-02-as-needed.patch, added to the Debian package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    LOG_GROUP_DEFAULT = RTLOGGROUP_FIRST_USER,
62
62
    /** CFGM group. */
63
63
    LOG_GROUP_CFGM,
64
 
    /** Core Dumper group. */
 
64
    /** Core Dumper group. **/
65
65
    LOG_GROUP_CORE_DUMPER,
66
66
    /** CPUM group. */
67
67
    LOG_GROUP_CPUM,
171
171
    LOG_GROUP_DRV_HOST_SERIAL,
172
172
    /** The internal networking transport driver group. */
173
173
    LOG_GROUP_DRV_INTNET,
174
 
    /** iSCSI Initiator driver group. */
175
 
    LOG_GROUP_DRV_ISCSI,
176
 
    /** iSCSI TCP transport driver group. */
177
 
    LOG_GROUP_DRV_ISCSI_TRANSPORT_TCP,
178
174
    /** ISO (CD/DVD) media driver group. */
179
175
    LOG_GROUP_DRV_ISO,
180
176
    /** Keyboard Queue driver group. */
209
205
    LOG_GROUP_DRV_VUSB,
210
206
    /** EM group. */
211
207
    LOG_GROUP_EM,
 
208
    /** FTM group. */
 
209
    LOG_GROUP_FTM,
212
210
    /** GMM group. */
213
211
    LOG_GROUP_GMM,
214
212
    /** GUI group. */
253
251
    LOG_GROUP_PDM,
254
252
    /** PDM Async completion group. */
255
253
    LOG_GROUP_PDM_ASYNC_COMPLETION,
 
254
    /** PDM Block cache group. */
 
255
    LOG_GROUP_PDM_BLK_CACHE,
256
256
    /** PDM Device group. */
257
257
    LOG_GROUP_PDM_DEVICE,
258
258
    /** PDM Driver group. */
263
263
    LOG_GROUP_PDM_QUEUE,
264
264
    /** PGM group. */
265
265
    LOG_GROUP_PGM,
 
266
    /** PGM dynamic mapping group. */
 
267
    LOG_GROUP_PGM_DYNMAP,
266
268
    /** PGM physical group. */
267
269
    LOG_GROUP_PGM_PHYS,
268
270
    /** PGM physical access group. */
321
323
    LOG_GROUP_VD,
322
324
    /** iSCSI virtual disk backend. */
323
325
    LOG_GROUP_VD_ISCSI,
 
326
    /** Parallels HDD virtual disk backend. */
 
327
    LOG_GROUP_VD_PARALLELS,
324
328
    /** Raw virtual disk backend. */
325
329
    LOG_GROUP_VD_RAW,
326
330
    /** VDI virtual disk backend. */
361
365
    RT_LOGGROUP_NAMES, \
362
366
    "DEFAULT",      \
363
367
    "CFGM",         \
364
 
    "COREDUMPER",   \
 
368
    "CORE_DUMPER",  \
365
369
    "CPUM",         \
366
370
    "CSAM",         \
367
371
    "DBGC",         \
416
420
    "DRV_HOST_PARALLEL", \
417
421
    "DRV_HOST_SERIAL", \
418
422
    "DRV_INTNET",   \
419
 
    "DRV_ISCSI",    \
420
 
    "DRV_ISCSI_TRANSPORT_TCP", \
421
423
    "DRV_ISO",      \
422
424
    "DRV_KBD_QUEUE", \
423
425
    "DRV_LWIP",     \
435
437
    "DRV_VSWITCH",  \
436
438
    "DRV_VUSB",     \
437
439
    "EM",           \
 
440
    "FTM",          \
438
441
    "GMM",          \
439
442
    "GUI",          \
440
443
    "GVMM",         \
457
460
    "PATM",         \
458
461
    "PDM",          \
459
462
    "PDM_ASYNC_COMPLETION", \
 
463
    "PDM_BLK_CACHE", \
460
464
    "PDM_DEVICE",   \
461
465
    "PDM_DRIVER",   \
462
466
    "PDM_LDR",      \
463
467
    "PDM_QUEUE",    \
464
468
    "PGM",          \
 
469
    "PGM_DYNMAP",   \
465
470
    "PGM_PHYS",     \
466
471
    "PGM_PHYS_ACCESS",\
467
472
    "PGM_POOL",     \
491
496
    "USB_MSD",      \
492
497
    "VD",           \
493
498
    "VD_ISCSI",     \
 
499
    "VD_PARALLELS", \
494
500
    "VD_RAW",       \
495
501
    "VD_VDI",       \
496
502
    "VD_VHD",       \