feat(thread): implement SCreateThread for Linux

This commit is contained in:
fallenoak 2022-12-28 21:07:31 -06:00 committed by GitHub
parent db87a5d782
commit 9475df632d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 92 additions and 1 deletions

View file

@ -0,0 +1,6 @@
#include "storm/thread/S_Thread.hpp"
#include "storm/Memory.hpp"
void* S_Thread::s_SLaunchThread(void* threadParam) {
// TODO
}