Changeset 38037 in vbox
- Timestamp:
- Jul 18, 2011 5:31:38 PM (13 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r37877 r38037 5 5 6 6 /* 7 * Copyright (C) 2006-201 0Oracle Corporation7 * Copyright (C) 2006-2011 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 20 20 * Header Files * 21 21 *******************************************************************************/ 22 /* #define LOG_ENABLED */ 22 23 23 /* Enable dev_vmm Log3 statements to get IRQ-related logging. */ 24 24 -
trunk/src/VBox/Frontends/VBoxFB/VBoxFB.h
r28800 r38037 6 6 7 7 /* 8 * Copyright (C) 2006-20 09Oracle Corporation8 * Copyright (C) 2006-2011 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 19 19 #ifndef __H_VBOXFB 20 20 #define __H_VBOXFB 21 22 // release logging23 #define LOG_ENABLED24 21 25 22 #include <stdlib.h> -
trunk/src/VBox/Main/Makefile.kmk
r38000 r38037 210 210 $(if $(VBOX_WITH_COCOA_QT),VBOX_WITH_COCOA_QT,) \ 211 211 $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,) \ 212 $(if $(VBOX_MAIN_RELEASE_LOG),VBOX_MAIN_RELEASE_LOG LOG_ENABLED,) \213 212 $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA,) \ 214 213 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE,) \ … … 571 570 $(if $(VBOX_WITH_VRDP_VIDEO_CHANNEL),VBOX_WITH_VRDP_VIDEO_CHANNEL,) \ 572 571 $(if $(VBOX_WITH_HGCM),VBOX_WITH_HGCM,) \ 573 $(if $(VBOX_MAIN_RELEASE_LOG),VBOX_MAIN_RELEASE_LOG LOG_ENABLED,) \574 572 $(if $(VBOX_WITH_ALSA),VBOX_WITH_ALSA,) \ 575 573 $(if $(VBOX_WITH_PULSE),VBOX_WITH_PULSE,) \ -
trunk/src/VBox/Main/include/Logging.h
r37666 r38037 42 42 #endif 43 43 44 /* Ensure log macros are enabled if release logging is requested */45 #if defined (VBOX_MAIN_RELEASE_LOG) && !defined (DEBUG)46 # ifndef LOG_ENABLED47 # define LOG_ENABLED48 # endif49 #endif50 51 44 #include <VBox/log.h> 52 45 -
trunk/src/VBox/Runtime/Makefile.kmk
r37733 r38037 218 218 ifdef IPRT_WITH_KSTUFF 219 219 RuntimeR3_DEFS += LDR_WITH_KLDR 220 endif221 ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated222 RuntimeR3_DEFS += RTCRITSECT_STRICT223 220 endif 224 221 ifdef IPRT_WITH_LZJB
Note:
See TracChangeset
for help on using the changeset viewer.