Changeset 6551 in vbox
- Timestamp:
- Jan 29, 2008 1:55:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/logbackdoor-redirect.cpp
r6549 r6551 1 1 /* $Id$ */ 2 2 /** @file 3 * Virtual Box Runtime - Guest Backdoor Logging, release logging for assertions. 3 * Virtual Box Runtime - RTLog stubs for the stripped down IPRT used by 4 * RuntimeGuestR3Shared (X11), output is redirected 5 * to the RTLogBackdoor API where possible. 4 6 */ 5 7 6 8 /* 7 * Copyright (C) 200 6-2007 innotek GmbH9 * Copyright (C) 2007 innotek GmbH 8 10 * 9 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 29 31 *******************************************************************************/ 30 32 #include <VBox/log.h> 31 #include <iprt/asm.h>32 #include <iprt/string.h>33 #ifdef IN_GUEST_R334 # include <VBox/VBoxGuest.h>35 #endif36 33 37 34 38 /*******************************************************************************39 * Public Functions *40 *******************************************************************************/41 35 42 36 /* All release logging goes to the backdoor logger anyway. */ … … 46 40 } 47 41 42 48 43 /* All logging goes to the backdoor logger anyway. */ 49 44 RTDECL(PRTLOGGER) RTLogDefaultInstance(void) … … 51 46 return NULL; 52 47 } 48 53 49 54 50 RTDECL(void) RTLogRelPrintf(const char *pszFormat, ...) … … 61 57 } 62 58 59 63 60 RTDECL(void) RTLogRelPrintfV(const char *pszFormat, va_list args) 64 61 { 65 62 RTLogBackdoorPrintfV(pszFormat, args); 66 63 } 64 67 65 68 66 RTDECL(void) RTLogPrintf(const char *pszFormat, ...) … … 75 73 } 76 74 75 77 76 RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list args) 78 77 { … … 80 79 } 81 80 81 82 82 /* Do nothing for now. */ 83 83 RTDECL(void) RTLogFlush(PRTLOGGER) 84 84 { 85 85 } 86
Note:
See TracChangeset
for help on using the changeset viewer.