Changeset 3367 in vbox for trunk/src/libs/xpcom18a4/nsprpub/pr
- Timestamp:
- Jul 3, 2007 12:20:16 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22565
- Location:
- trunk/src/libs/xpcom18a4/nsprpub/pr/src/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prfile.c
r1 r3367 72 72 return rv; 73 73 74 PR_LOG(_pr_io_lm, PR_LOG_MAX, 75 ("read: fd=%p osfd=%d buf=%p amount=%d", 76 fd, fd ? fd->secret->md.osfd : 0, buf, amount)); 77 74 78 rv = _PR_MD_READ(fd, buf, amount); 75 79 if (rv < 0) { … … 108 112 #endif /* XP_UNIX */ 109 113 while (amount > 0) { 114 PR_LOG(_pr_io_lm, PR_LOG_MAX, 115 ("write: fd=%p osfd=%d buf=%p amount=%d", 116 fd, fd ? fd->secret->md.osfd : 0, buf, amount)); 110 117 temp = _PR_MD_WRITE(fd, buf, amount); 111 118 if (temp < 0) { -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prlog.c
r1 r3367 54 54 #include "prprf.h" 55 55 #include <string.h> 56 57 #if defined(VBOX) 58 #define IN_RING3 59 #include <iprt/runtime.h> // for RTR3Init 60 #include <iprt/log.h> 61 #endif 56 62 57 63 /* … … 113 119 #endif 114 120 121 /* 122 ** Use the innotek Portable Runtime logging facility when 123 ** NSPR_LOG_FILE is set to "WinDebug". The default IPRT log instance 124 ** and the "default" log group will be used for logging. 125 */ 126 #if defined(VBOX) 127 #define IPRT_DEBUG_FILE (FILE*)-3 128 #endif 129 115 130 /* Macros used to reduce #ifdef pollution */ 116 131 117 #if defined(_PR_USE_STDIO_FOR_LOGGING) && defined(XP_PC) 132 #if defined(VBOX) 133 #define _PUT_LOG(fd, buf, nb) \ 134 PR_BEGIN_MACRO \ 135 if (logFile == IPRT_DEBUG_FILE) { \ 136 Log(("%*.*S", nb, nb, buf)); \ 137 } else { \ 138 fwrite(buf, 1, nb, fd); \ 139 fflush(fd); \ 140 } \ 141 PR_END_MACRO 142 #elif defined(_PR_USE_STDIO_FOR_LOGGING) && defined(XP_PC) 118 143 #define _PUT_LOG(fd, buf, nb) \ 119 144 PR_BEGIN_MACRO \ … … 289 314 && logFile != stdout 290 315 && logFile != stderr 316 #ifdef VBOX 317 && logFile != IPRT_DEBUG_FILE 318 #endif 291 319 #ifdef XP_PC 292 320 && logFile != WIN32_DEBUG_FILE … … 375 403 FILE *newLogFile; 376 404 405 #ifdef VBOX 406 if ( strcmp( file, "IPRT") == 0) 407 { 408 // initialize VBox Runtime 409 RTR3Init(false, 0); 410 newLogFile = IPRT_DEBUG_FILE; 411 } 412 else 413 #endif 377 414 #ifdef XP_PC 378 415 if ( strcmp( file, "WinDebug") == 0) … … 393 430 && logFile != stdout 394 431 && logFile != stderr 432 #ifdef VBOX 433 && logFile != IPRT_DEBUG_FILE 434 #endif 395 435 #ifdef XP_PC 396 436 && logFile != WIN32_DEBUG_FILE
Note:
See TracChangeset
for help on using the changeset viewer.