- Started setting up a thread safe window manager

- Created thread & atomic structures
This commit is contained in:
2025-12-17 01:11:28 -05:00
parent 520a0e1363
commit aee4e340dd
41 changed files with 2179 additions and 428 deletions

View File

@@ -21,6 +21,7 @@
#include "lang/test_bits.h"
#include "lang/test_conditional_types.h"
#include "lang/test_function.h"
#include "lang/test_hashing.h"
#include "lang/test_metaprogramming.h"
@@ -41,6 +42,11 @@ namespace fennec::test
fennec_test_subheader("metaprogramming tests");
fennec_test_spacer(2);
fennec_test_lang_metaprogramming();
fennec_test_spacer(3);
fennec_test_subheader("function tests");
fennec_test_spacer(2);
fennec_test_lang_function();
// TODO
}