[PR #27] [MERGED] Pthreads #1222

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/27
Author: @georgemoralis
Created: 7/20/2023
Status: Merged
Merged: 7/20/2023
Merged by: @georgemoralis

Base: mainHead: pthreads


📝 Commits (10+)

  • 3d073e2 added winpthread library
  • 5180a28 updates submodules to latest
  • c3eb515 fixed winpthread linking
  • f03c1a5 initial thread management files
  • ce95520 some pthread work nothing exciting
  • dd46d27 Merge pull request #1 from wheremyfoodat/pthreadz
  • 165c6d5 Update .gitignore
  • bb2de74 Fix compilation error maybe
  • 03892b5 Merge pull request #25 from wheremyfoodat/main
  • cc59608 more pthread progress added init for main Thread

📊 Changes

18 files changed (+241 additions, -20 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 .gitmodules (+4 -0)
📝 CMakeLists.txt (+5 -3)
src/Core/PS4/HLE/ErrorCodes.h (+5 -0)
src/Core/PS4/HLE/Kernel/ThreadManagement.cpp (+131 -0)
src/Core/PS4/HLE/Kernel/ThreadManagement.h (+42 -0)
📝 src/Core/PS4/HLE/LibC.cpp (+6 -5)
📝 src/Core/PS4/Linker.cpp (+24 -0)
📝 src/Core/PS4/Linker.h (+8 -1)
📝 src/main.cpp (+5 -4)
📝 third-party/CMakeLists.txt (+3 -1)
📝 third-party/SDL (+1 -1)
📝 third-party/fmt (+1 -1)
📝 third-party/imgui (+1 -1)
📝 third-party/magic_enum (+1 -1)
📝 third-party/spdlog (+1 -1)
third-party/winpthread (+1 -0)
📝 third-party/zydis (+1 -1)

📄 Description

No description provided


🔄 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/27 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 7/20/2023 **Status:** ✅ Merged **Merged:** 7/20/2023 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `pthreads` --- ### 📝 Commits (10+) - [`3d073e2`](https://github.com/shadps4-emu/shadPS4/commit/3d073e2ed4f56d18d7ba57343a59fc60a846187a) added winpthread library - [`5180a28`](https://github.com/shadps4-emu/shadPS4/commit/5180a282ede612669beb043cbd5c2f2bb5a605e7) updates submodules to latest - [`c3eb515`](https://github.com/shadps4-emu/shadPS4/commit/c3eb515895aa7fd635e5bf87932d010019db0b6e) fixed winpthread linking - [`f03c1a5`](https://github.com/shadps4-emu/shadPS4/commit/f03c1a5fb4df1a602dc46b5c9f0510ec526c5071) initial thread management files - [`ce95520`](https://github.com/shadps4-emu/shadPS4/commit/ce95520f38bb3ebeb03416a3bc9b25ffaff00560) some pthread work nothing exciting - [`dd46d27`](https://github.com/shadps4-emu/shadPS4/commit/dd46d270c3955f9c2456cc031d60156bbc8f7371) Merge pull request #1 from wheremyfoodat/pthreadz - [`165c6d5`](https://github.com/shadps4-emu/shadPS4/commit/165c6d5a7b78c7548e8c981e90cda83bef3b972c) Update .gitignore - [`bb2de74`](https://github.com/shadps4-emu/shadPS4/commit/bb2de743b70ed2ad87561d3fc8cf5af34b3fd748) Fix compilation error maybe - [`03892b5`](https://github.com/shadps4-emu/shadPS4/commit/03892b51a95cfa2d37dc719626ac9f449d82af8c) Merge pull request #25 from wheremyfoodat/main - [`cc59608`](https://github.com/shadps4-emu/shadPS4/commit/cc596083f5f2f747fb00e28bbaeb5e5d8b802439) more pthread progress added init for main Thread ### 📊 Changes **18 files changed** (+241 additions, -20 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `.gitmodules` (+4 -0) 📝 `CMakeLists.txt` (+5 -3) ➕ `src/Core/PS4/HLE/ErrorCodes.h` (+5 -0) ➕ `src/Core/PS4/HLE/Kernel/ThreadManagement.cpp` (+131 -0) ➕ `src/Core/PS4/HLE/Kernel/ThreadManagement.h` (+42 -0) 📝 `src/Core/PS4/HLE/LibC.cpp` (+6 -5) 📝 `src/Core/PS4/Linker.cpp` (+24 -0) 📝 `src/Core/PS4/Linker.h` (+8 -1) 📝 `src/main.cpp` (+5 -4) 📝 `third-party/CMakeLists.txt` (+3 -1) 📝 `third-party/SDL` (+1 -1) 📝 `third-party/fmt` (+1 -1) 📝 `third-party/imgui` (+1 -1) 📝 `third-party/magic_enum` (+1 -1) 📝 `third-party/spdlog` (+1 -1) ➕ `third-party/winpthread` (+1 -0) 📝 `third-party/zydis` (+1 -1) </details> ### 📄 Description _No description provided_ --- <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:42 +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#1222
No description provided.