]> gitweb.fperrin.net Git - iftop.git/blob - threadprof.h
Import de iftop-1.0pre1
[iftop.git] / threadprof.h
1 #ifdef PROFILING
2
3 #define pthread_create(a, b, c, d) gprof_pthread_create(a, b, c, d)
4
5 int gprof_pthread_create(pthread_t * thread, pthread_attr_t * attr,
6                          void * (*start_routine)(void *), void * arg);
7
8 #endif