/* * $Header: /afs/pdc.kth.se/src/projects/perftools/iotrack/iotrack/iowrap.h,v 1.1 2004/10/14 15:01:01 mucci Exp $ * * mucci@cs.utk.edu $Date: 2004/10/14 15:01:01 $ * * Common goodies * */ #if defined(NPTL) #define __thread __threadp #endif #ifdef __GNUC__ void init_iowrap() __attribute__((constructor)); #else #define init_iowrap _init #endif #ifdef __GNUC__ void fini_iowrap() __attribute__((destructor)); #else #define fini_iowrap _fini #endif