| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-06-28 | service: ptm: Rewrite PSM and add TS | german77 | |
| 2022-06-26 | core: Replace all instances of ResultCode with Result | german77 | |
| 2022-04-23 | general: Convert source file copyright comments over to SPDX | Morph | |
| This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | |||
| 2022-04-06 | Merge pull request #8164 from liamwhite/jit-stub | bunnei | |
| service: jit: stub JIT service | |||
| 2022-04-06 | service: jit: stub JIT service | Liam | |
| 2022-04-02 | hle: service: Add option for service interfaces to create or use the default ↵ | bunnei | |
| thread. | |||
| 2022-03-24 | hle: vi: Integrate new NVFlinger and HosBinderDriverServer service. | bunnei | |
| 2022-02-10 | service/mnpp: Stub mnpp_app | Narr the Reg | |
| Used in Super Nintendo Entertainment System™ - Nintendo Switch Online | |||
| 2021-11-03 | core: Remove unused includes | ameerj | |
| 2021-08-27 | ngct: Stub NGCT:U service | german77 | |
| 2021-07-20 | hle: service: sm: Refactor to better manage ports. | bunnei | |
| 2021-07-14 | service: Append service name prefix to common filenames | Morph | |
| 2021-06-23 | General: Resolve fmt specifiers to adhere to 8.0.0 API where applicable | Lioncash | |
| Also removes some deprecated API usages. | |||
| 2021-06-04 | hle: kernel: Refactor to allocate a ServiceThread per service handler. | bunnei | |
| - Previously, we would allocate a thread per session, which adds new threads on CloneCurrentObject. - This results in race conditions with N sessions queuing requests to the same service interface. - Fixes Pokken Tournament DX crashes/softlocks, which were regressed by #6347. | |||
| 2021-06-02 | general: Replace RESULT_SUCCESS with ResultSuccess | Morph | |
| Transition to PascalCase for result names. | |||
| 2021-05-20 | hle: kernel: Implement CloneCurrentObject and improve session management. | bunnei | |
| 2021-05-10 | hle: service: Add support for dispatching TIPC requests. | bunnei | |
| 2021-05-10 | hle: service: Implement IPC::CommandType::Close. | bunnei | |
| - This was not actually closing sessions before. | |||
| 2021-05-10 | hle: service: sm: Use RegisterNamedService to register the service. | bunnei | |
| 2021-05-10 | hle: kernel: Implement named service ports using service interface factory. | bunnei | |
| - This allows us to create a new interface each time ConnectToNamedPort is called, removing the assumption that these are static. | |||
| 2021-05-05 | hle: kernel: Rename Process to KProcess. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KPort, KClientPort, and KServerPort to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KServerPort to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KClientPort to KAutoObject. | bunnei | |
| 2021-04-14 | common: Move settings to common from core. | bunnei | |
| - Removes a dependency on core and input_common from common. | |||
| 2021-03-30 | configuration: Add auto stub toggle that resets on boot | ameerj | |
| Auto-stub is an experimental debugging feature that may cause unforseen bugs. This adds a toggle to only allow auto-stubbing unimplemented functions when explicitly enabled when yuzu is launched. | |||
| 2021-03-30 | service: Auto stub fallback | ameerj | |
| For simple services we can implement an automatic stub fallback to help with compatibility until a proper implementation is done. Co-Authored-By: Chloe <25727384+ognik5377@users.noreply.github.com> | |||
| 2021-01-28 | core: hle: kernel: Rename Thread to KThread. | bunnei | |
| 2020-12-28 | hle: service: Acquire and release a lock on requests. | bunnei | |
| - This makes it such that we can safely access service members from CoreTiming thread. | |||
| 2020-12-28 | hle: service: Ensure system is powered on before writing IPC result. | bunnei | |
| 2020-12-07 | core: Remove unnecessary enum casts in log calls | Lioncash | |
| Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts. | |||
| 2020-11-26 | service: Eliminate usages of the global system instance | Lioncash | |
| Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services. | |||
| 2020-11-24 | hle: services: Fix a crash with improper NVFlinger lifetime management. (#4977) | bunnei | |
| * hle: services: Fix a crash with improper NVFlinger lifetime management. - This crash would happen when attempting to shutdown yuzu early on in boot. | |||
| 2020-11-19 | hle: service: Stub OLSC Initialize and SetSaveDataBackupSettingEnabled ↵ | bunnei | |
| functions. - Used by Animal Cross: New Horizons v1.6.0 update, minimal stub gets this update working. | |||
| 2020-10-20 | Revert "core: Fix clang build" | bunnei | |
| 2020-10-17 | core: Fix clang build | Lioncash | |
| Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795 | |||
| 2020-09-25 | service: Restore "unused" function | Lioncash | |
| Turns out this function is actually used, but within a trace log. | |||
| 2020-09-17 | service: Remove unused funcation | Lioncash | |
| This is now completely unused, so it can be removed. | |||
| 2020-09-07 | service: Remove two usages of the global system accessor | Lioncash | |
| Removes more instances of reliance on global state. | |||
| 2020-07-28 | services/bsd: Implement most of bsd:s | ReinUsesLisp | |
| This implements: Socket, Poll, Accept, Bind, Connect, GetPeerName, GetSockName, Listen, Fcntl, SetSockOpt, Shutdown, Recv, RecvFrom, Send, SendTo, Write, and Close The implementation was done referencing: SwIPC, switchbrew, testing with libnx and inspecting its code, general information about bsd sockets online, and analysing official software. Not everything from these service calls is implemented, but everything that is not implemented will be logged in some way. | |||
| 2019-11-28 | kernel: Implement a more accurate IPC dispatch. | bunnei | |
| 2019-11-24 | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for ↵ | bunnei | |
| kernel objects. (#3154) * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details. | |||
| 2019-10-08 | Merge pull request #2654 from DarkLordZach/lm-log-rewrite | bunnei | |
| lm: Rewrite logger to use core reporting services | |||
| 2019-10-01 | bcat: Add FSC accessors for BCAT data | Zach Hilman | |
| Ports BCAT to use FSC interface | |||
| 2019-09-22 | core: Add LM::Manager to system | Zach Hilman | |
| Allows centralized control over logging mechanisms. | |||
| 2019-09-22 | Removed reference to core timing to nvflinger and used system instead | David Marcec | |
| 2019-09-22 | Rebase | David Marcec | |
| 2019-09-22 | Merge pull request #2612 from DarkLordZach/prepo-new | David | |
| prepo: Implement New, System, and Non-User variants of SaveReport | |||
| 2019-09-21 | prepo: Remove system global accessors | Zach Hilman | |
| 2019-09-21 | configure_debug: Move reporting option to logging | Zach Hilman | |
