mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
222 B
C++
12 lines
222 B
C++
#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);
|
|
} // namespace rx::thread
|