mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
102 lines
1.7 KiB
C++
102 lines
1.7 KiB
C++
/*
|
|
* Copyright 2010-2024 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bx/blob/master/LICENSE
|
|
*/
|
|
|
|
#ifndef BX_THREAD_H_HEADER_GUARD
|
|
#define BX_THREAD_H_HEADER_GUARD
|
|
|
|
#include "allocator.h"
|
|
#include "mpscqueue.h"
|
|
|
|
#if BX_CONFIG_SUPPORTS_THREADING
|
|
|
|
namespace bx
|
|
{
|
|
///
|
|
typedef int32_t (*ThreadFn)(class Thread* _self, void* _userData);
|
|
|
|
///
|
|
class Thread
|
|
{
|
|
BX_CLASS(Thread
|
|
, NO_COPY
|
|
);
|
|
|
|
public:
|
|
///
|
|
Thread();
|
|
|
|
///
|
|
virtual ~Thread();
|
|
|
|
/// Create and initialize thread.
|
|
///
|
|
/// @param[in] _fn Thread function.
|
|
/// @param[in] _userData User data passed to thread function.
|
|
/// @param[in] _stackSize Stack size, if zero is passed it will use OS default thread stack
|
|
/// size.
|
|
/// @param[in] _name Thread name used by debugger.
|
|
/// @returns True if thread is created, otherwise returns false.
|
|
///
|
|
bool init(ThreadFn _fn, void* _userData = NULL, uint32_t _stackSize = 0, const char* _name = NULL);
|
|
|
|
///
|
|
void shutdown();
|
|
|
|
///
|
|
bool isRunning() const;
|
|
|
|
///
|
|
int32_t getExitCode() const;
|
|
|
|
///
|
|
void setThreadName(const char* _name);
|
|
|
|
///
|
|
void push(void* _ptr);
|
|
|
|
///
|
|
void* pop();
|
|
|
|
private:
|
|
friend struct ThreadInternal;
|
|
int32_t entry();
|
|
|
|
BX_ALIGN_DECL(16, uint8_t) m_internal[64];
|
|
|
|
ThreadFn m_fn;
|
|
void* m_userData;
|
|
MpScUnboundedBlockingQueue<void> m_queue;
|
|
Semaphore m_sem;
|
|
uint32_t m_stackSize;
|
|
int32_t m_exitCode;
|
|
bool m_running;
|
|
};
|
|
|
|
///
|
|
class TlsData
|
|
{
|
|
public:
|
|
///
|
|
TlsData();
|
|
|
|
///
|
|
~TlsData();
|
|
|
|
///
|
|
void* get() const;
|
|
|
|
///
|
|
void set(void* _ptr);
|
|
|
|
private:
|
|
BX_ALIGN_DECL(16, uint8_t) m_internal[64];
|
|
};
|
|
|
|
} // namespace bx
|
|
|
|
#endif
|
|
|
|
#endif // BX_THREAD_H_HEADER_GUARD
|