Changeset 7419


Ignore:
Timestamp:
Nov 22, 2001, 11:41:29 AM (24 years ago)
Author:
phaller
Message:

.

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/exitlist.h

    r4871 r7419  
    1 // $Id: exitlist.h,v 1.2 2001-01-04 18:18:51 sandervl Exp $
     1// $Id: exitlist.h,v 1.3 2001-11-22 10:40:55 phaller Exp $
    22/*
    33 * Win32 dll exit list invocation orders
     
    4949//Order of odincrt.dll (should always be invoked last!)
    5050#define EXITLIST_ODINCRT                0x00009F00
     51#define EXITLIST_ODINPROF               0x00009F01
    5152
    5253#endif //__EXITLIST_H__
  • trunk/src/kernel32/winexepeldr.cpp

    r7025 r7419  
    1 /* $Id: winexepeldr.cpp,v 1.16 2001-10-12 00:49:23 phaller Exp $ */
     1/* $Id: winexepeldr.cpp,v 1.17 2001-11-22 10:41:29 phaller Exp $ */
    22
    33/*
     
    4343#ifdef PROFILE
    4444#include <perfview.h>
     45#include <profiler.h>
    4546#endif /* PROFILE */
    4647
     
    152153  // information about the called functions.
    153154  PerfView_Initialize();
     155  ProfilerInitialize();
     156  ProfilerEnable(TRUE);
    154157#endif /* PROFILE */
    155158 
  • trunk/src/kernel32/wprocess.cpp

    r7025 r7419  
    1 /* $Id: wprocess.cpp,v 1.136 2001-10-12 00:49:23 phaller Exp $ */
     1/* $Id: wprocess.cpp,v 1.137 2001-11-22 10:41:29 phaller Exp $ */
    22
    33/*
     
    5050#ifdef PROFILE
    5151#include <perfview.h>
     52#include <profiler.h>
    5253#endif /* PROFILE */
    5354
     
    441442  // information
    442443  PerfView_Write();
     444  ProfilerWrite();
     445  ProfilerTerminate();
    443446#endif /* PROFILE */
    444447 
Note: See TracChangeset for help on using the changeset viewer.