VirtualBox

Ignore:
Timestamp:
Jul 3, 2007 12:20:16 AM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
22565
Message:

NSPR: In VBOX builds, NSPR_LOG_FILE may be set to "IPRT" in order to have NSPR logging redirected to the default IPRT logger (the "default" log group).

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  
    7272        return rv;
    7373
     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
    7478        rv = _PR_MD_READ(fd, buf, amount);
    7579        if (rv < 0) {
     
    108112#endif /* XP_UNIX */
    109113    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));
    110117                temp = _PR_MD_WRITE(fd, buf, amount);
    111118                if (temp < 0) {
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prlog.c

    r1 r3367  
    5454#include "prprf.h"
    5555#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
    5662
    5763/*
     
    113119#endif
    114120
     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
    115130/* Macros used to reduce #ifdef pollution */
    116131
    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)
    118143#define _PUT_LOG(fd, buf, nb) \
    119144    PR_BEGIN_MACRO \
     
    289314        && logFile != stdout
    290315        && logFile != stderr
     316#ifdef VBOX
     317        && logFile != IPRT_DEBUG_FILE
     318#endif
    291319#ifdef XP_PC
    292320        && logFile != WIN32_DEBUG_FILE
     
    375403    FILE *newLogFile;
    376404
     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
    377414#ifdef XP_PC
    378415    if ( strcmp( file, "WinDebug") == 0)
     
    393430        && logFile != stdout
    394431        && logFile != stderr
     432#ifdef VBOX
     433        && logFile != IPRT_DEBUG_FILE
     434#endif
    395435#ifdef XP_PC
    396436        && logFile != WIN32_DEBUG_FILE
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette