added sceKernelGetFsSandboxRandomWord and dummy posix_connect

This commit is contained in:
georgemoralis 2024-06-26 14:56:41 +03:00
parent c511b1b0cf
commit 7ef11a7bd8
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ int PS4_SYSV_ABI sceKernelOpen(const char* path, int flags, u16 mode) {
} }
int PS4_SYSV_ABI posix_open(const char* path, int flags, /* SceKernelMode*/ u16 mode) { int PS4_SYSV_ABI posix_open(const char* path, int flags, /* SceKernelMode*/ u16 mode) {
LOG_INFO(Kernel_Fs, "posix open redirect to sceKernelOpen\n"); LOG_INFO(Kernel_Fs, "posix open redirect to sceKernelOpen");
int result = sceKernelOpen(path, flags, mode); int result = sceKernelOpen(path, flags, mode);
// Posix calls different only for their return values // Posix calls different only for their return values
ASSERT(result >= 0); ASSERT(result >= 0);