2023-07-06 13:26:57 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "orbis/thread/Thread.hpp"
|
|
|
|
|
|
|
|
|
|
namespace rx::thread {
|
|
|
|
|
void initialize();
|
|
|
|
|
void deinitialize();
|
|
|
|
|
|
|
|
|
|
extern thread_local orbis::Thread *g_current;
|
|
|
|
|
void invoke(orbis::Thread *thread);
|
2023-07-06 18:16:25 +02:00
|
|
|
} // namespace rx::thread
|