mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 10:55:03 +00:00
core: Many things (#194)
* video_core: Add a few missed things * libkernel: More proper memory mapped files * memory: Fix tessellation buffer mapping * Cuphead work * sceKernelPollSema fix * clang format * fixed ngs2 lle loading and rtc lib * draft pthreads keys implementation * fixed return codes * return error code if sceKernelLoadStartModule module is invalid * re-enabled system modules and disable debug in libs.h * Improve linux support * fix windows build * kernel: Rework keys --------- Co-authored-by: georgemoralis <giorgosmrls@gmail.com>
This commit is contained in:
parent
6a47f8ae50
commit
c5d1d579b1
67 changed files with 1406 additions and 307 deletions
|
@ -449,6 +449,15 @@ constexpr u32 R_X86_64_JUMP_SLOT = 7; // Create PLT entry
|
|||
constexpr u32 R_X86_64_RELATIVE = 8; // Adjust by program base
|
||||
constexpr u32 R_X86_64_DTPMOD64 = 16;
|
||||
|
||||
struct eh_frame_hdr {
|
||||
uint8_t version;
|
||||
uint8_t eh_frame_ptr_enc;
|
||||
uint8_t fde_count_enc;
|
||||
uint8_t table_enc;
|
||||
uint32_t eh_frame_ptr;
|
||||
uint32_t fde_count;
|
||||
};
|
||||
|
||||
namespace Core::Loader {
|
||||
|
||||
class Elf {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue