Ignore:
Timestamp:
Oct 12, 2001, 5:48:06 AM (24 years ago)
Author:
phaller
Message:

heap acceleration

File:
1 edited

Legend:

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

    r7025 r7027  
    1 /* $Id: perfview.cpp,v 1.2 2001-10-12 00:49:24 phaller Exp $ */
     1/* $Id: perfview.cpp,v 1.3 2001-10-12 03:48:06 phaller Exp $ */
    22
    33/*
     
    9797  // Note: this should rather be done where the times are taken,
    9898  // however this would spread the code just too far.
    99   nTicks -= tsCompensation;
     99  if (tsCompensation < nTicks)
     100    nTicks -= tsCompensation;
     101  else
     102    nTicks = 0;
    100103 
    101104  // check if that particular function is registered already
     
    311314  if(_privateLogFile == NULL)
    312315  {
    313     sprintf(szFilename, "%spe_%d.log", kernel32Path, loadNr);
     316    sprintf(szFilename, "%sperf_%d.log", kernel32Path, loadNr);
    314317    _privateLogFile = fopen(szFilename, "w");
    315318  }
Note: See TracChangeset for help on using the changeset viewer.