2020-09-09 00:45:46 -05:00
|
|
|
#ifndef STORM_THREAD_HPP
|
|
|
|
|
#define STORM_THREAD_HPP
|
|
|
|
|
|
2023-03-26 23:07:48 -05:00
|
|
|
#include "storm/thread/CCritSect.hpp"
|
2020-11-01 23:13:02 -06:00
|
|
|
#include "storm/thread/CSRWLock.hpp"
|
2020-11-01 17:45:45 -06:00
|
|
|
#include "storm/thread/SCritSect.hpp"
|
|
|
|
|
#include "storm/thread/SEvent.hpp"
|
2021-08-09 00:16:03 -05:00
|
|
|
#include "storm/thread/SSemaphore.hpp"
|
2020-11-01 17:45:45 -06:00
|
|
|
#include "storm/thread/SSyncObject.hpp"
|
|
|
|
|
#include "storm/thread/SThread.hpp"
|
2020-09-09 00:45:46 -05:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
2022-12-28 20:03:31 -06:00
|
|
|
void* SCreateThread(uint32_t (*threadProc)(void*), void* threadParam, void* a3, SThread* syncObject, const char* threadName);
|
2020-09-09 00:45:46 -05:00
|
|
|
|
2021-12-17 15:43:58 -06:00
|
|
|
uintptr_t SGetCurrentThreadId();
|
|
|
|
|
|
2020-09-09 00:45:46 -05:00
|
|
|
#endif
|