summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2023-01-14timing: wait for completion on unregisterLiam
2023-01-14Be careful of mangled out of bounds readKelebek1
2023-01-14core: hid: Fix stick minimum rangegerman77
2023-01-14Add stacktrace symbol demanglingKelebek1
2023-01-12debugger: add host fastmem pointer fetch commandLiam
2023-01-11nvnflinger: correct swap interval handlingLiam
2023-01-07Revert "Revert "k_page_group: synchronize""bunnei
2023-01-07Merge pull request #9563 from german77/crash_not_allowedbunnei
input_common: Create an update engine
2023-01-06Merge pull request #9561 from liamwhite/update-dynarmicliamwhite
externals: update dynarmic, xbyak
2023-01-06Merge pull request #9558 from MonsterDruide1/network-timeout-noerrorliamwhite
net: Silently translate ETIMEDOUT network error
2023-01-05input_common: Create an update engineNarr the Reg
2023-01-05externals: update dynarmic, xbyakLiam
2023-01-05MemoryManager: use fastmem directly.Fernando Sahmkow
2023-01-05net: Silently translate ETIMEDOUT network errorMonsterDruide1
2023-01-03Merge pull request #9518 from gidoly/revert-9504-pg2liamwhite
Revert "k_page_group: synchronize"
2023-01-03TAS: Immediately switch stick to TAS on inputMonsterDruide1
Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
2023-01-01service: nifm: Initialize request stategerman77
2023-01-01service: nifm: Match documentation namesgerman77
2023-01-01vfs: Replace cstr concat with char concatMerry
2022-12-30core: hid: emulated_console: Avoid a crash if frontend does not configure ↵bunnei
touch_from_button_maps.
2022-12-29Revert "k_page_group: synchronize"gidoly
2022-12-28hle_ipc: Use thread_local ReadBufferameerj
2022-12-28hle_ipc: Rename ReadBufferSpan to ReadBufferameerj
2022-12-28hle_ipc: Rename ReadBuffer to ReadBufferCopyameerj
Indicates explicitly that a copy is occurring
2022-12-28bsd: Use std::span for read payloadsameerj
Allows the use of HLERequestContext::ReadBufferSpan
2022-12-28nvdrv: Use std::span for inputsameerj
Allows the use of HLERequestContext::ReadBufferSpan
2022-12-28hidbus: Use ReadBufferSpanameerj
2022-12-28Merge pull request #9504 from liamwhite/pg2bunnei
k_page_group: synchronize
2022-12-25nvflinger: Split Parcel class into InputParcel and OutputParcelameerj
The usages of the Parcel class were already unique to either Read or Write operations. Avoids needing a vector of the input payload for the InputParcel use-case, instead it can remain as a span.
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj
2022-12-25TAS: Increase accuracy of Stick inputsMonsterDruide1
2022-12-25k_page_table: remove HACK_OpenPages/ClosePagesLiam
2022-12-25fsp_srv: Use ReadBufferSpanameerj
2022-12-25hle_ipc: Add ReadBufferSpan functionameerj
Returns a std::span to the buffer address, rather than create a copy of the memory into a std::vector
2022-12-25k_page_group: synchronizeLiam
2022-12-25Merge pull request #9496 from liamwhite/shm3liamwhite
kernel: workaround static shared memory initialization
2022-12-23kernel: workaround static shared memory initializationLiam
2022-12-21time: add LockFreeAtomicTypeLiam
2022-12-20Merge pull request #9463 from liamwhite/manager-eventsliamwhite
EmuThread: refactor
2022-12-18kernel: remove TimeManagerLiam
2022-12-18kernel: add KHardwareTimerLiam
2022-12-18service: nfc: Silence ListDevicesgerman77
2022-12-17Merge pull request #9456 from german77/virtual_gamepadbunnei
input_common: Add virtual gamepad
2022-12-17EmuThread: refactorLiam
2022-12-17Merge pull request #9452 from ameerj/hle-read-buffer-resreveliamwhite
hle_ipc: Refactor ReadBuffer to set buffer size upon initialization
2022-12-16input_common: Add virtual gamepadgerman77
2022-12-16Merge pull request #6354 from ogniK5377/device-nameliamwhite
Set: Allow setting device nickname
2022-12-16Merge pull request #9450 from ameerj/hle-ipc-vector-reserveliamwhite
hle_ipc: Reserve vectors before populating
2022-12-15hle_ipc: Refactor ReadBuffer to set buffer size upon initializationameerj
Initializing the vector size during initialization is more efficient than a later call to resize()
2022-12-15hle_ipc: Reserve vectors before populatingameerj