1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_RT_PROFILE_INCLUDED
 7 #define CMAJOR_RT_PROFILE_INCLUDED
 8 #include <cmajor/rt/RtApi.hpp>
 9 #include <stdint.h>
10 
11 extern "C" void RtStartProfiling(int64_t numberOfPolymorphicClassIds, const uint64_t* polymorphicClassIdArray, 
12     int64_t numberOfStaticClassIds, const uint64_t* staticClassIdArray);
13 extern "C" void RtEndProfiling();
14 extern "C" void RtProfileStartFunction(void* functionId);
15 extern "C" void RtProfileEndFunction(void* functionId);
16 
17 #endif // CMAJOR_RT_PROFILE_INCLUDED