Ignore:
Timestamp:
Nov 22, 2001, 2:35:42 PM (24 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/odinprof/profiler.cpp

    r7423 r7427  
    1 /* $Id: profiler.cpp,v 1.2 2001-11-22 11:34:43 phaller Exp $ */
     1/* $Id: profiler.cpp,v 1.3 2001-11-22 13:35:42 phaller Exp $ */
    22/*
    33 * Project Odin Software License can be found in LICENSE.TXT
     
    710710  {
    711711    PPROFILEENTRY p = (PPROFILEENTRY)arrEntries[i].pObject;
    712     if (p->ulCalls > 1)
    713712    fprintf(file,
    714713            "%10d %10d %10d %10d %10d %s(%s)\n",
     
    738737  {
    739738    PPROFILEENTRY p = (PPROFILEENTRY)arrEntries[i].pObject;
    740     if (p->ulCalls > 1)
    741739    fprintf(file,
    742740            "%10d %10d %10d %s(%s)\n",
     
    764762  {
    765763    PPROFILEENTRY p = (PPROFILEENTRY)arrEntries[i].pObject;
    766     if (p->ulCalls > 1)
    767764    fprintf(file,
    768765            "%10d %10d %10d %s(%s)\n",
     
    790787  {
    791788    PPROFILEENTRY p = (PPROFILEENTRY)arrEntries[i].pObject;
    792     if (p->ulCalls > 1)
    793789    fprintf(file,
    794790            "%10d %10d %10d %s(%s)\n",
     
    810806  // write to file
    811807  fprintf(file,
    812           "Functions / symbols sorted by address\n"
     808          "\nFunctions / symbols sorted by address\n"
    813809          "Address ----- Function / Symbol -------------------------------------------\n");
    814810  for(i = 0;
     
    817813  {
    818814    PPROFILEENTRY p = (PPROFILEENTRY)arrEntries[i].pObject;
    819     if (p->ulCalls > 1)
    820815    fprintf(file,
    821816            "#%08xh %-9s %s\n",
     
    825820  }
    826821 
     822  // at last print the sym map
     823  pSymPool->printSYMs(file);
    827824
    828825  ProfilerEnable(flagLock);
Note: See TracChangeset for help on using the changeset viewer.