File: threadprof.h

package info (click to toggle)
iftop 1.0~pre4-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,064 kB
  • sloc: ansic: 5,782; sh: 4,262; makefile: 38
file content (8 lines) | stat: -rw-r--r-- 234 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
#ifdef PROFILING

#define pthread_create(a, b, c, d) gprof_pthread_create(a, b, c, d)

int gprof_pthread_create(pthread_t * thread, pthread_attr_t * attr,
                         void * (*start_routine)(void *), void * arg);

#endif