Various odds and ends.

This commit is contained in:
pdw
2002-10-11 15:21:35 +00:00
parent 7c5ba0f5d7
commit 62a9d8a85c
7 changed files with 144 additions and 41 deletions

8
threadprof.h Normal file
View File

@@ -0,0 +1,8 @@
#ifdef PROFILING
#define pthread_create(a, b, c, d) gprof_pthread_create(a, b, c, d)
int gprof_pthread_create(pthread_t * thread, pthread_attr_t * attr,
void * (*start_routine)(void *), void * arg);
#endif