68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
|
!IF 0
|
||
|
**************************************************************
|
||
|
Sources file for building Working Set Tuner Data Collection dll.
|
||
|
|
||
|
Module Name : wst.dll
|
||
|
|
||
|
Author: RezaB
|
||
|
|
||
|
Revision: Added BATCHING information (MarkLea)
|
||
|
|
||
|
Comments:
|
||
|
|
||
|
The following defines can be used to control output of all the
|
||
|
debugging information to the debugger via KdPrint() for the checked
|
||
|
builds:
|
||
|
|
||
|
(All debugging options are undefined in wst.c for free/retail builds)
|
||
|
|
||
|
#ifdef ERRORDBG : Displays all the error messages to the debugger. It
|
||
|
has no effect on the timing. *DEFAULT*
|
||
|
|
||
|
#ifdef INFODBG : Displays messages to indicate when data dumping/
|
||
|
clearing operations are completed. It has no effect
|
||
|
on timing. *DEFAULT*
|
||
|
|
||
|
#ifdef SETUPDBG : Displays messages during memory management and
|
||
|
symbol lookup operations. It has some affect
|
||
|
on timing whenever a chuck of memory is committed.
|
||
|
|
||
|
#ifdef DETAILDBG : Dispalys detailed data during dump operations.
|
||
|
Sends lots of output (2 lines for each data cell)
|
||
|
to the debugger. Should only be used for debugging
|
||
|
data cell info.
|
||
|
|
||
|
#ifdef BATCHING : Outputs batch count information to BATCH.TXT
|
||
|
|
||
|
#ifdef C6 : Generate code using C6 compiler. C6 compiler
|
||
|
calls _mcount() as the profiling routine where as
|
||
|
C8 calls _penter().
|
||
|
|
||
|
**************************************************************
|
||
|
!ENDIF
|
||
|
|
||
|
DLLBASE=0x77800000
|
||
|
DLLENTRY=WSTMain
|
||
|
|
||
|
DLLDEF=$(O)\wst.def
|
||
|
|
||
|
USE_NTDLL=1
|
||
|
|
||
|
TARGETNAME=wst
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
TARGETLIBS= \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\dbghelp.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib
|
||
|
|
||
|
SOURCES=wst.c wst.rc
|
||
|
|
||
|
UMTYPE=windows
|
||
|
|
||
|
C_DEFINES=-DWIN32
|
||
|
|
||
|
ALPHA_SOURCES=alpha\wstutl.s
|
||
|
AXP64_SOURCES=alpha\wstutl.s
|
||
|
IA64_SOURCES=ia64\wstutl.s
|