Changeset 29271 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- May 9, 2010 9:25:16 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61355
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/logcom.cpp
r29250 r29271 49 49 50 50 #include <iprt/asm.h> 51 #include <iprt/asm-amd64-x86.h> 51 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) /** @todo consider fixing the config instead. */ 52 # include <iprt/asm-amd64-x86.h> 53 #endif 52 54 #include <iprt/stdarg.h> 53 55 #include <iprt/string.h> … … 114 116 RTDECL(void) RTLogWriteCom(const char *pach, size_t cb) 115 117 { 118 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 116 119 const uint8_t *pu8; 117 120 for (pu8 = (const uint8_t *)pach; cb-- > 0; pu8++) … … 135 138 ASMOutU8(IPRT_UART_BASE, *pu8); 136 139 } 140 #else 141 /* PORTME? */ 142 #endif 137 143 } 138 144 RT_EXPORT_SYMBOL(RTLogWriteCom);
Note:
See TracChangeset
for help on using the changeset viewer.