Ignore:
Timestamp:
Feb 26, 2002, 6:01:23 PM (23 years ago)
Author:
sandervl
Message:

fix thread id in log

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/misc.cpp

    r7795 r8021  
    1 /* $Id: misc.cpp,v 1.45 2002-02-03 10:59:23 sandervl Exp $ */
     1/* $Id: misc.cpp,v 1.46 2002-02-26 17:01:23 sandervl Exp $ */
    22
    33/*
     
    352352        fprintf(flog,
    353353                "t%02d (%3d): (%x) (FS=150B) ",
    354                 teb->o.odin.threadId,
     354                LOWORD(teb->o.odin.threadId),
    355355                ulCallDepth,
    356356                GetTickCount());
     
    358358        fprintf(flog,
    359359                "t%02d (%3d): (%x) ",
    360                 teb->o.odin.threadId,
     360                LOWORD(teb->o.odin.threadId),
    361361                ulCallDepth,
    362362                GetTickCount());
     
    366366#ifdef SHOW_FPU_CONTROLREG
    367367                "t%02d (%3d)(%3x): ",
    368                 teb->o.odin.threadId,
     368                LOWORD(teb->o.odin.threadId),
    369369                ulCallDepth,
    370370                CONTROL87(0,0));
    371371#else
    372372                "t%02d (%3d): (FS=150B) ",
    373                 teb->o.odin.threadId,
     373                LOWORD(teb->o.odin.threadId),
    374374                ulCallDepth);
    375375#endif
     
    378378#ifdef SHOW_FPU_CONTROLREG
    379379                "t%02d (%3d)(%3x): ",
    380                 teb->o.odin.threadId,
     380                LOWORD(teb->o.odin.threadId),
    381381                ulCallDepth,
    382382                CONTROL87(0,0));
    383383#else
    384384                "t%02d (%3d): ",
    385                 teb->o.odin.threadId,
     385                LOWORD(teb->o.odin.threadId),
    386386                ulCallDepth);
    387387#endif
Note: See TracChangeset for help on using the changeset viewer.