Home | History | Annotate | Download | only in iftop-0.17
      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
      9