Changeset 81383 in vbox
- Timestamp:
- Oct 19, 2019 11:58:44 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/log.h
r80268 r81383 277 277 /** IOM group. */ 278 278 LOG_GROUP_IOM, 279 /** IOM group, I/O port part. */ 280 LOG_GROUP_IOM_IOPORT, 281 /** IOM group, MMIO part. */ 282 LOG_GROUP_IOM_MMIO, 279 283 /** XPCOM IPC group. */ 280 284 LOG_GROUP_IPC, … … 857 861 "IOBUFMGMT", \ 858 862 "IOM", \ 863 "IOM_IOPORT", \ 864 "IOM_MMIO", \ 859 865 "IPC", \ 860 866 "LWIP", \ -
trunk/src/VBox/VMM/VMMAll/IOMAll.cpp
r81333 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_IOPORT 23 23 #include <VBox/vmm/iom.h> 24 24 #include <VBox/vmm/mm.h> … … 38 38 #include "IOMInline.h" 39 39 40 41 //#undef LOG_GROUP42 //#define LOG_GROUP LOG_GROUP_IOM_IOPORT43 40 44 41 /** -
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r81333 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_MMIO 23 23 #include <VBox/vmm/iom.h> 24 24 #include <VBox/vmm/cpum.h> -
trunk/src/VBox/VMM/VMMAll/IOMAllMmioNew.cpp
r81379 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_MMIO 23 23 #define VMCPU_INCL_CPUM_GST_CTX 24 24 #include <VBox/vmm/iom.h> -
trunk/src/VBox/VMM/VMMR0/IOMR0IoPort.cpp
r81335 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_IOPORT 23 23 #include <VBox/vmm/iom.h> 24 24 #include "IOMInternal.h" -
trunk/src/VBox/VMM/VMMR0/IOMR0Mmio.cpp
r81335 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_MMIO 23 23 #include <VBox/vmm/iom.h> 24 24 #include "IOMInternal.h" -
trunk/src/VBox/VMM/VMMR3/IOMR3IoPort.cpp
r81375 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_IOPORT 23 23 #include <VBox/vmm/iom.h> 24 24 #include <VBox/sup.h> -
trunk/src/VBox/VMM/VMMR3/IOMR3Mmio.cpp
r81375 r81383 20 20 * Header Files * 21 21 *********************************************************************************************************************************/ 22 #define LOG_GROUP LOG_GROUP_IOM 22 #define LOG_GROUP LOG_GROUP_IOM_MMIO 23 23 #include <VBox/vmm/iom.h> 24 24 #include <VBox/sup.h>
Note:
See TracChangeset
for help on using the changeset viewer.