vm/sys_overlay Improvements

- Implement sys_overlay_load_module_by_fd.
- Implement special segment allocation when ppc_seg flag is specified.
This commit is contained in:
Eladash 2019-07-03 20:17:04 +03:00 committed by Ivan
parent 65134f73d6
commit 997e3046e3
14 changed files with 178 additions and 59 deletions

View file

@ -28,7 +28,7 @@
LOG_CHANNEL(sys_process);
u32 g_ps3_sdk_version;
ps3_process_info_t g_ps3_process_info;
s32 process_getpid()
{
@ -182,7 +182,7 @@ s32 _sys_process_get_paramsfo(vm::ptr<char> buffer)
s32 process_get_sdk_version(u32 pid, s32& ver)
{
// get correct SDK version for selected pid
ver = g_ps3_sdk_version;
ver = g_ps3_process_info.sdk_ver;
return CELL_OK;
}