2020-09-09 00:45:46 -05:00
|
|
|
#ifndef STORM_THREAD_HPP
|
|
|
|
|
#define STORM_THREAD_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>
|
|
|
|
|
|
|
|
|
|
int32_t SCreateThread(uint32_t (*threadProc)(void*), void* threadParam, void* a3, SThread* syncObject, const char* threadName);
|
|
|
|
|
|
|
|
|
|
#endif
|