rpcsx/orbis-kernel/include/orbis/thread/sysent.hpp

19 lines
259 B
C++
Raw Normal View History

2023-07-03 13:10:16 +02:00
#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