[PR #104] [MERGED] More modules work #1296

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/104
Author: @georgemoralis
Created: 3/29/2024
Status: Merged
Merged: 4/1/2024
Merged by: @georgemoralis

Base: mainHead: modules3


📝 Commits (10+)

  • b36df13 added more dummy modules
  • 37813c1 clang format fix
  • 8e8a82a some dummy net functions
  • 94cd3be dummy sysmodule module
  • 5373d73 clang format fix
  • 30946e2 more clang fixes
  • ad7e750 scePthreadAttrDestroy,scePthreadAttrGetaffinity added
  • 8fa5874 dummy libkernel module
  • 0525481 partial implementation of _write function , which is used as debug ouput from lle libc
  • 186fa35 added ps4_ prefix to libkernel to make sure it deosn't conflict with linux function names

📊 Changes

22 files changed (+13708 additions, -1 deletions)

View changed files

📝 CMakeLists.txt (+16 -0)
📝 src/common/logging/filter.cpp (+7 -0)
📝 src/common/logging/types.h (+7 -0)
📝 src/core/hle/libraries/libkernel/file_system.cpp (+42 -1)
📝 src/core/hle/libraries/libkernel/thread_management.cpp (+27 -0)
📝 src/core/hle/libraries/libs.cpp (+16 -0)
src/core/libraries/libkernel.cpp (+6774 -0)
src/core/libraries/libkernel.h (+1061 -0)
src/core/libraries/libscehttp.cpp (+720 -0)
src/core/libraries/libscehttp.h (+127 -0)
src/core/libraries/libscenet.cpp (+1356 -0)
src/core/libraries/libscenet.h (+231 -0)
src/core/libraries/libscenetctl.cpp (+636 -0)
src/core/libraries/libscenetctl.h (+105 -0)
src/core/libraries/libsceposix.cpp (+13 -0)
src/core/libraries/libsceposix.h (+10 -0)
src/core/libraries/libscesavedata.cpp (+653 -0)
src/core/libraries/libscesavedata.h (+107 -0)
src/core/libraries/libscessl.cpp (+1286 -0)
src/core/libraries/libscessl.h (+220 -0)

...and 2 more files

📄 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/104 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 3/29/2024 **Status:** ✅ Merged **Merged:** 4/1/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `modules3` --- ### 📝 Commits (10+) - [`b36df13`](https://github.com/shadps4-emu/shadPS4/commit/b36df1383aa724364584d2f3e2357ff22beebf0c) added more dummy modules - [`37813c1`](https://github.com/shadps4-emu/shadPS4/commit/37813c1f59238f698f7ea12eaff85addd5486b4a) clang format fix - [`8e8a82a`](https://github.com/shadps4-emu/shadPS4/commit/8e8a82a3108fd2f1159f84f36923127a7efaa4d9) some dummy net functions - [`94cd3be`](https://github.com/shadps4-emu/shadPS4/commit/94cd3be814cdcd00fc43473c8e42365c086e1293) dummy sysmodule module - [`5373d73`](https://github.com/shadps4-emu/shadPS4/commit/5373d7367db8439aea48509a2d2ae966fdebc2af) clang format fix - [`30946e2`](https://github.com/shadps4-emu/shadPS4/commit/30946e21dde517fed290f9cf2111d3e3d8dea5fe) more clang fixes - [`ad7e750`](https://github.com/shadps4-emu/shadPS4/commit/ad7e750fa712e3c0a82c947f3f385658d9efd9fb) scePthreadAttrDestroy,scePthreadAttrGetaffinity added - [`8fa5874`](https://github.com/shadps4-emu/shadPS4/commit/8fa5874fb113f20902968a0055cdb25f145ebc94) dummy libkernel module - [`0525481`](https://github.com/shadps4-emu/shadPS4/commit/0525481a9b7272944fa187d18bcb81eb4e3a7b0d) partial implementation of _write function , which is used as debug ouput from lle libc - [`186fa35`](https://github.com/shadps4-emu/shadPS4/commit/186fa35f1330efd2efba979b1523d95f0fbcba7d) added ps4_ prefix to libkernel to make sure it deosn't conflict with linux function names ### 📊 Changes **22 files changed** (+13708 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+16 -0) 📝 `src/common/logging/filter.cpp` (+7 -0) 📝 `src/common/logging/types.h` (+7 -0) 📝 `src/core/hle/libraries/libkernel/file_system.cpp` (+42 -1) 📝 `src/core/hle/libraries/libkernel/thread_management.cpp` (+27 -0) 📝 `src/core/hle/libraries/libs.cpp` (+16 -0) ➕ `src/core/libraries/libkernel.cpp` (+6774 -0) ➕ `src/core/libraries/libkernel.h` (+1061 -0) ➕ `src/core/libraries/libscehttp.cpp` (+720 -0) ➕ `src/core/libraries/libscehttp.h` (+127 -0) ➕ `src/core/libraries/libscenet.cpp` (+1356 -0) ➕ `src/core/libraries/libscenet.h` (+231 -0) ➕ `src/core/libraries/libscenetctl.cpp` (+636 -0) ➕ `src/core/libraries/libscenetctl.h` (+105 -0) ➕ `src/core/libraries/libsceposix.cpp` (+13 -0) ➕ `src/core/libraries/libsceposix.h` (+10 -0) ➕ `src/core/libraries/libscesavedata.cpp` (+653 -0) ➕ `src/core/libraries/libscesavedata.h` (+107 -0) ➕ `src/core/libraries/libscessl.cpp` (+1286 -0) ➕ `src/core/libraries/libscessl.h` (+220 -0) _...and 2 more files_ </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:58 +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#1296
No description provided.