mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
ipmi: fixed respond sync, get message, try get message, try send message event: detach event emitter from file signals: basic implementation linker: fixed zero symbol relocation, fixed exec relocation shared_cv/mutex: implement eintr response support shared_cv: fixed possible loop instead of wait ipmi: implement invoke async, respond async, get result, get client app id, client get name rpcsx-os: add safemode flag
14 lines
265 B
C++
14 lines
265 B
C++
#pragma once
|
|
|
|
#include "orbis/thread/Thread.hpp"
|
|
|
|
namespace rx::thread {
|
|
void initialize();
|
|
void deinitialize();
|
|
void *setupSignalStack();
|
|
void *setupSignalStack(void *address);
|
|
void setupThisThread();
|
|
|
|
void invoke(orbis::Thread *thread);
|
|
} // namespace rx::thread
|