HPCToolkit
constructors.h
Go to the documentation of this file.
1 #ifndef __constructors__h
2 #define __constructors__h
3 
4 #define concat_names(x,y ) x ## y
5 #define HPCRUN_CONSTRUCTOR(x) \
6  __attribute__((constructor)) \
7  void concat_names(hpcrun_constructor_, x)
8 
9 #endif