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