Annotation of embedaddon/iftop/threadprof.h, revision 1.1.1.1

1.1       misho       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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>