From: Marek P. <ma...@us...> - 2001-09-23 16:50:18
|
Update of /cvsroot/javaprofiler/library/src/setup In directory usw-pr-cvs1:/tmp/cvs-serv6750/src/setup Modified Files: setup.h Log Message: documentation to IProf interface added Index: setup.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/setup/setup.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** setup.h 2001/09/19 18:57:27 1.8 --- setup.h 2001/09/23 16:50:15 1.9 *************** *** 45,49 **** public: ! /// Profiling granularity levels enum LEVEL { --- 45,49 ---- public: ! /// profiling granularity levels enum LEVEL { *************** *** 53,60 **** }; ! /// Memory profiling setup parameters struct Alloc { ! /// Whether memory profiling is turned ON or OFF int turnedOn; --- 53,60 ---- }; ! /// memory profiling setup parameters struct Alloc { ! /// whether memory profiling is turned ON or OFF int turnedOn; *************** *** 65,72 **** LEVEL level; ! /// Trace depth int traceDepth; ! /// Whether resolution to threads is enabled int threadsEnabled; }; --- 65,72 ---- LEVEL level; ! /// trace depth int traceDepth; ! /// whether resolution to threads is enabled int threadsEnabled; }; *************** *** 75,82 **** struct Cpu { ! /// Whether CPU profiling is turned ON or OFF int turnedOn; ! /// Whether to use sampling or exact profiling int sampling; --- 75,82 ---- struct Cpu { ! /// whether CPU profiling is turned ON or OFF int turnedOn; ! /// whether to use sampling or exact profiling int sampling; *************** *** 86,100 **** LEVEL level; ! /// Trace depth int traceDepth; ! /// Whether resolution to threads is enabled int threadsEnabled; }; ! /// Monitor profiling setup parameters struct Mon { ! /// Whether monitor profiling is turned ON or OFF int turnedOn; --- 86,100 ---- LEVEL level; ! /// trace depth int traceDepth; ! /// whether resolution to threads is enabled int threadsEnabled; }; ! /// monitor profiling setup parameters struct Mon { ! /// whether monitor profiling is turned ON or OFF int turnedOn; *************** *** 104,111 **** LEVEL level; ! /// Trace depth int traceDepth; ! /// Whether resolution to threads is enabled int threadsEnabled; }; --- 104,111 ---- LEVEL level; ! /// trace depth int traceDepth; ! /// whether resolution to threads is enabled int threadsEnabled; }; *************** *** 147,151 **** }; ! /// Memory profiling Alloc alloc; --- 147,151 ---- }; ! /// memory profiling Alloc alloc; *************** *** 153,160 **** Cpu cpu; ! /// Monitor profiling Mon mon; ! /// Communication Com com; --- 153,160 ---- Cpu cpu; ! /// monitor profiling Mon mon; ! /// communication Com com; |