threadprof.h 234 B

12345678
  1. #ifdef PROFILING
  2. #define pthread_create(a, b, c, d) gprof_pthread_create(a, b, c, d)
  3. int gprof_pthread_create(pthread_t * thread, pthread_attr_t * attr,
  4. void * (*start_routine)(void *), void * arg);
  5. #endif