From: Gonzalo A. <ga...@us...> - 2007-03-12 19:18:49
|
Update of /cvsroot/mod-c/ehtml/include In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv10474/include Modified Files: Profiling.h Log Message: Implemented a profiling information persistent storage. ehmlt_prof_util merges profiling information and generates profiling reports (plain old text so far). Index: Profiling.h =================================================================== RCS file: /cvsroot/mod-c/ehtml/include/Profiling.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Profiling.h 8 Mar 2007 17:41:10 -0000 1.11 --- Profiling.h 12 Mar 2007 19:18:46 -0000 1.12 *************** *** 152,155 **** --- 152,163 ---- EXTERNC unsigned long profile_stubs(); + /** + * Save profiling information. + * + * This profile run statistics can then be merged with ehml_prof_merge + * utility. + */ + EXTERNC void saveProfile(); + #endif |