24 lines
291 B
C
24 lines
291 B
C
|
/*
|
||
|
* Mr. 4th Dimention - Allen Webster
|
||
|
*
|
||
|
* 14.08.2019
|
||
|
*
|
||
|
* Core logging structures.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
// TOP
|
||
|
|
||
|
#if !defined(FRED_LOG_H)
|
||
|
#define FRED_LOG_H
|
||
|
|
||
|
struct Log{
|
||
|
System_Mutex mutex;
|
||
|
Arena arena;
|
||
|
List_String_Const_u8 list;
|
||
|
volatile i32 disabled_thread_id;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|