aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
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-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-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-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
2022-12-15kernel: svc: Fix duplicated InfoType enumNarr the Reg
2022-12-15kernel: process: Implement GetFreeThreadCountNarr the Reg
Used by Just DanceĀ® 2023 Edition
2022-12-15Merge pull request #7410 from Nefsen402/wayland-fixesliamwhite
Wayland fixes
2022-12-14Revert "hle: service: audio: Use default service thread."bunnei
2022-12-13Set: Allow setting device nicknameChloe Marcec
2022-12-13gl_device: Use a more robust way to use strict context modeAlexander Orzechowski
Instead of checking a environment variable which may not actually exist or is just wrong, ask QT if it's running on the wayland platform.
2022-12-12Merge pull request #9398 from liamwhite/failbunnei
general: improve handling of system startup failure
2022-12-11Merge pull request #9415 from liamwhite/dcMai
memory: correct semantics of data cache management operations
2022-12-11memory: correct semantics of data cache management operationsLiam
2022-12-10memory: remove DEBUG_ASSERT pointer testLiam
2022-12-09Remove the lock entirely as per PR discussionSalvage
Correctly unlock mutex before its destruction As per https://en.cppreference.com/w/cpp/thread/mutex/~mutex destroying a locked mutex is undefined behavior and MSVC++ decides to throw in this case Swap out unique for scoped lock and readd comment
2022-12-06general: improve handling of system startup failureLiam
2022-12-06Merge pull request #9370 from liamwhite/break-unmappedmerry
core: add option to break on unmapped access
2022-12-06Merge pull request #9392 from lioncash/reporterliamwhite
reporter: Eliminate undefined behavior in SaveErrorReport
2022-12-06Merge pull request #9390 from lioncash/keyboardliamwhite
applets: Extract callback types into aliases
2022-12-06Merge pull request #9389 from lioncash/emumoveliamwhite
emulated_console/emulated_controller: std::move ParamPackage instances where applicable
2022-12-06Merge pull request #9386 from lioncash/initliamwhite
kernel: Ensure relevant class members are always initialized on construction
2022-12-05Merge pull request #9369 from german77/mifareliamwhite
service: nfc: Implement mifare service
2022-12-05reporter: Pass by const reference where applicableLioncash
Same behavior, but without memory churn.
2022-12-05reporter: Eliminate undefined behavior in SaveErrorReportLioncash
The optionals are unconditionally dereferenced when setting the custom error text, and in a few cases this function is called using the default value of the optionals. This means we'd be dereferencing uninitialized storage. Since they're used unconditionally, we can use value_or to set a default when storage is uninitialized.
2022-12-05applets/controller: Use aliases for callbacksLioncash
2022-12-05applets/error: Use aliases for callbacksLioncash
2022-12-05applets/mii_edit: Use aliases for callbacksLioncash
2022-12-05applets/profile_select: Use aliases for callbacksLioncash
Deduplicates callback definitions and situates it in one place.
2022-12-05applets/web_browser: Use aliases for callbacksLioncash
Deduplicates a lot of long callback declarations
2022-12-05applets/software_keyboard: Use aliases for callbacksLioncash
Deduplicates really long std::function declarations to make the interface nicer to read.