diff options
author | Reiko Asakura | 2020-07-23 21:58:21 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-07-23 21:58:21 -0400 |
commit | 8909e609e2cd4fdc7795acdf8160dd86dd1a3951 (patch) | |
tree | f4318f6258a892d5a7605864dd9ed9270effa205 /nids | |
parent | Put common IO definitions into psp2common (diff) | |
download | vds-libraries-8909e609e2cd4fdc7795acdf8160dd86dd1a3951.tar.gz |
Rename some IO syscalls and wrappers
These 3 functions, sceIoClose, sceIoRead, sceIoWrite, are imported from
SceIofilemgr (library) by SceLibKernel (module) and exported again by
SceLibKernel (library) without a syscall wrapper.
After this name change, SceIofilemgr_stub will no longer need to be
linked for common IO functions.
Diffstat (limited to 'nids')
-rw-r--r-- | nids/360/SceLibKernel.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nids/360/SceLibKernel.yml b/nids/360/SceLibKernel.yml index 37074d2..2e5be07 100644 --- a/nids/360/SceLibKernel.yml +++ b/nids/360/SceLibKernel.yml @@ -64,7 +64,7 @@ modules: sceIoChstat: 0x29482F7F sceIoChstatAsync: 0x9739A5E2 sceIoChstatByFd: 0x6E903AB2 - sceIoClose2: 0xF5C6F098 + sceIoClose: 0xF5C6F098 sceIoCompleteMultiple: 0xA792C404 sceIoDevctl: 0x04B30CB2 sceIoDevctlAsync: 0x950F78EB @@ -85,7 +85,7 @@ modules: sceIoPreadAsync: 0xA010141E sceIoPwrite: 0x8FFFF5A8 sceIoPwriteAsync: 0xED25BEEF - sceIoRead2: 0x713523E1 + sceIoRead: 0x713523E1 sceIoRemove: 0xE20ED0F3 sceIoRemoveAsync: 0x446A60AC sceIoRename: 0xF737E369 @@ -94,7 +94,7 @@ modules: sceIoRmdirAsync: 0x9694D00F sceIoSync: 0x98ACED6D sceIoSyncAsync: 0xF7C7FBFE - sceIoWrite2: 0x11FED231 + sceIoWrite: 0x11FED231 sceKernelAtomicAddAndGet16: 0x495C52EC sceKernelAtomicAddAndGet32: 0x2E84A93B sceKernelAtomicAddAndGet64: 0xB6CE9B9A |