[PR #74] [CLOSED] Threads and openorbis stuff #1266

Closed
opened 2026-02-27 21:11:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/74
Author: @georgemoralis
Created: 11/16/2023
Status: Closed

Base: mainHead: threads_and_openorbis_stuff


📝 Commits (10+)

  • cad5ac3 some threadman fixes
  • 776a680 prefix in libc functions to avoid messing with std ones
  • 1316443 initial ScePthreadCond works
  • 3e8cd57 scePthreadCond functions
  • f143b3d sceKernelMmap, posix_mmap implementation
  • 4d93809 sceKernelUsleep,_writev
  • 7ac286e openorbis requires version 1.1 of videoOut lib (not found in commercial games)
  • 23b6698 some fs for libkernel
  • 62731c7 removed debug code
  • 379037e some work for fs trying to run libpng demo of openorbis (not working)

📊 Changes

24 files changed (+611 additions, -137 deletions)

View changed files

📝 CMakeLists.txt (+3 -1)
📝 src/common/fs_file.cpp (+2 -0)
📝 src/common/fs_file.h (+1 -0)
📝 src/core/PS4/HLE/Graphics/video_out.cpp (+9 -0)
src/core/file_sys/fs.cpp (+91 -0)
src/core/file_sys/fs.h (+54 -0)
📝 src/core/hle/libraries/libc/libc.cpp (+56 -56)
📝 src/core/hle/libraries/libc/libc_cxa.cpp (+3 -3)
📝 src/core/hle/libraries/libc/libc_cxa.h (+3 -3)
📝 src/core/hle/libraries/libc/libc_math.cpp (+8 -8)
📝 src/core/hle/libraries/libc/libc_math.h (+8 -8)
📝 src/core/hle/libraries/libc/libc_stdio.cpp (+4 -4)
📝 src/core/hle/libraries/libc/libc_stdio.h (+4 -4)
📝 src/core/hle/libraries/libc/libc_stdlib.cpp (+6 -6)
📝 src/core/hle/libraries/libc/libc_stdlib.h (+6 -6)
📝 src/core/hle/libraries/libc/libc_string.cpp (+9 -9)
📝 src/core/hle/libraries/libc/libc_string.h (+9 -9)
📝 src/core/hle/libraries/libkernel/file_system.cpp (+37 -3)
📝 src/core/hle/libraries/libkernel/file_system.h (+7 -2)
📝 src/core/hle/libraries/libkernel/libkernel.cpp (+77 -1)

...and 4 more files

📄 Description

some rework on HLE threads and trying to work on getting openorbis work again with these


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/74 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 11/16/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `threads_and_openorbis_stuff` --- ### 📝 Commits (10+) - [`cad5ac3`](https://github.com/shadps4-emu/shadPS4/commit/cad5ac34b0853aea65b577984d6e3a98edb75827) some threadman fixes - [`776a680`](https://github.com/shadps4-emu/shadPS4/commit/776a680e850b0358e87707031cd1b4e2c13d78d0) prefix in libc functions to avoid messing with std ones - [`1316443`](https://github.com/shadps4-emu/shadPS4/commit/1316443c59fcf27ae4b0f85caed12c58d4d93309) initial ScePthreadCond works - [`3e8cd57`](https://github.com/shadps4-emu/shadPS4/commit/3e8cd57986d8d830fbc88f9b7148fc34644d24de) scePthreadCond functions - [`f143b3d`](https://github.com/shadps4-emu/shadPS4/commit/f143b3d9bca3e8d948619b129971728df9c295cb) sceKernelMmap, posix_mmap implementation - [`4d93809`](https://github.com/shadps4-emu/shadPS4/commit/4d93809335a083566216294f2c27732f0b7743d3) sceKernelUsleep,_writev - [`7ac286e`](https://github.com/shadps4-emu/shadPS4/commit/7ac286e8b3908f2ded3b92456076a84304a80631) openorbis requires version 1.1 of videoOut lib (not found in commercial games) - [`23b6698`](https://github.com/shadps4-emu/shadPS4/commit/23b669871c02864743eba93438f0c05325d22bff) some fs for libkernel - [`62731c7`](https://github.com/shadps4-emu/shadPS4/commit/62731c7331b6e76d2517d669c669fedac78d8733) removed debug code - [`379037e`](https://github.com/shadps4-emu/shadPS4/commit/379037e2fd9c874ef6e110891b1cbeaa2868abc0) some work for fs trying to run libpng demo of openorbis (not working) ### 📊 Changes **24 files changed** (+611 additions, -137 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+3 -1) 📝 `src/common/fs_file.cpp` (+2 -0) 📝 `src/common/fs_file.h` (+1 -0) 📝 `src/core/PS4/HLE/Graphics/video_out.cpp` (+9 -0) ➕ `src/core/file_sys/fs.cpp` (+91 -0) ➕ `src/core/file_sys/fs.h` (+54 -0) 📝 `src/core/hle/libraries/libc/libc.cpp` (+56 -56) 📝 `src/core/hle/libraries/libc/libc_cxa.cpp` (+3 -3) 📝 `src/core/hle/libraries/libc/libc_cxa.h` (+3 -3) 📝 `src/core/hle/libraries/libc/libc_math.cpp` (+8 -8) 📝 `src/core/hle/libraries/libc/libc_math.h` (+8 -8) 📝 `src/core/hle/libraries/libc/libc_stdio.cpp` (+4 -4) 📝 `src/core/hle/libraries/libc/libc_stdio.h` (+4 -4) 📝 `src/core/hle/libraries/libc/libc_stdlib.cpp` (+6 -6) 📝 `src/core/hle/libraries/libc/libc_stdlib.h` (+6 -6) 📝 `src/core/hle/libraries/libc/libc_string.cpp` (+9 -9) 📝 `src/core/hle/libraries/libc/libc_string.h` (+9 -9) 📝 `src/core/hle/libraries/libkernel/file_system.cpp` (+37 -3) 📝 `src/core/hle/libraries/libkernel/file_system.h` (+7 -2) 📝 `src/core/hle/libraries/libkernel/libkernel.cpp` (+77 -1) _...and 4 more files_ </details> ### 📄 Description some rework on HLE threads and trying to work on getting openorbis work again with these --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:11:51 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#1266
No description provided.