blob: 0db89e206a08969912abc33cfcdc375b97a281da (
plain)
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
|