Return to threadprof.h CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / iftop |
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