rpcsx/orbis-kernel/include/orbis/thread/sysent.hpp
2023-07-03 14:12:41 +03:00

19 lines
259 B
C++

#pragma once
#include "orbis-config.hpp"
namespace orbis {
struct Thread;
using sy_call_t = SysResult(Thread *, uint64_t *);
struct sysent {
sint narg;
sy_call_t *call;
};
struct sysentvec {
sint size;
const sysent *table;
};
} // namespace orbis