| Revision: | 884 |
| Committed: | Thu Dec 18 21:47:51 2003 UTC (21 years, 10 months ago) by mmeineke |
| File size: | 427 byte(s) |
| Log Message: | added some profile functionality |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | mmeineke | 884 | // A little quick hack to do some rudimentry system profiling |
| 2 | |||
| 3 | #ifndef __MDPROFILE_H__ | ||
| 4 | #define __MDPROFILE_H__ | ||
| 5 | |||
| 6 | #define N_PROFILES 8 | ||
| 7 | #define MAX_PROFILE_NAMELENGTH 40 | ||
| 8 | |||
| 9 | enum proNames {pro1, pro2, pro3, pro4, pro5, pro6, pro7, pro8 }; | ||
| 10 | |||
| 11 | extern void initProfile( void ); | ||
| 12 | |||
| 13 | extern void startProfile( proNames theProfile ); | ||
| 14 | |||
| 15 | extern void endProfile( proNames theProfile ); | ||
| 16 | |||
| 17 | extern void writeProfiles( void ); | ||
| 18 | |||
| 19 | #endif //__MDPROFILE_H__ |