NEURON
profile.h
Go to the documentation of this file.
1 #ifndef profile_h
2 
3 extern void start_profile(int);
4 extern void add_profile(int);
5 
6 #if defined(PROFILE) && PROFILE > 0
7 #define PSTART(i) start_profile(i);
8 #define PSTOP(i) add_profile(i);
9 #else
10 #define PSTART(i) /**/
11 #define PSTOP(i) /**/
12 #endif
13 
14 #endif
void add_profile(int)
Definition: hoc.cpp:122
void start_profile(int)
Definition: hoc.cpp:121