Compiler warning cleanup (#113)

Cleanup + expose more methods for external ELFs
This commit is contained in:
Ken Van Hoeylandt
2024-12-08 19:59:01 +01:00
committed by GitHub
parent 415442e410
commit e4206e8637
30 changed files with 506 additions and 127 deletions
+2
View File
@@ -71,6 +71,7 @@ static void thread_body(void* context) {
Thread::Thread() :
data({
.thread = nullptr,
.taskHandle = nullptr,
.state = StateStopped,
.callback = nullptr,
@@ -90,6 +91,7 @@ Thread::Thread(
Callback callback,
_Nullable void* callbackContext) :
data({
.thread = nullptr,
.taskHandle = nullptr,
.state = StateStopped,
.callback = callback,