4coder/custom/4coder_profile.h

36 lines
810 B
C
Raw Normal View History

2019-10-18 20:54:45 +00:00
/*
* 4coder_profile.cpp - Built in self profiling report.
2019-10-18 20:54:45 +00:00
*/
// TOP
#if !defined(FCODER_PROFILE_H)
#define FCODER_PROFILE_H
struct Profile_Block{
Thread_Context *tctx;
b32 is_closed;
Profile_ID id;
2019-10-18 20:54:45 +00:00
Profile_Block(Thread_Context *tctx, String_Const_u8 name, String_Const_u8 location);
Profile_Block(Application_Links *app, String_Const_u8 name, String_Const_u8 location);
~Profile_Block();
void close_now();
2019-10-18 20:54:45 +00:00
};
struct Profile_Scope_Block{
Thread_Context *tctx;
b32 is_closed;
Profile_ID id;
Profile_Scope_Block(Application_Links *app, String_Const_u8 name, String_Const_u8 location);
Profile_Scope_Block(Thread_Context *tctx, String_Const_u8 name, String_Const_u8 location);
~Profile_Scope_Block();
void close_now();
2019-10-18 20:54:45 +00:00
};
#endif
// BOTTOM