| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-29 | Merge pull request #5246 from comex/xx-include | bunnei | |
| Add missing include of "core/hle/kernel/kernel.h" | |||
| 2020-12-29 | hle: kernel: Manage host thread IDs using TLS. | bunnei | |
| - Avoids the need to have a large map of host to guest thread IDs. | |||
| 2020-12-29 | k_priority_queue: Fix concepts use | comex | |
| - For `std::same_as`, add missing include of `<concepts>`. - For `std::convertible_to`, create a replacement in `common/concepts.h` and use that instead. This would also be found in `<concepts>`, but unlike `std::same_as`, `std::convertible_to` is not yet implemented in libc++, LLVM's STL implementation - not even in master. (In fact, `std::same_as` is the *only* concept currently implemented. For some reason.) | |||
| 2020-12-29 | Add missing include of "core/hle/kernel/kernel.h" | comex | |
| This is needed as the header invokes methods on KernelCore. | |||
| 2020-12-29 | svc: demote SleepThread log to LOG_TRACE | ameerj | |
| This log is called often, and introduces a lot of noise when debug logging is enabled, making it difficult to see other debug logs. | |||
| 2020-12-29 | hle: kernel: Move ServiceThread ownership to KernelCore. | bunnei | |
| - Fixes a circular dependency which prevented threads from being released on shutdown. | |||
| 2020-12-29 | hle: kernel: service_thread: Add thread name and take weak_ptr of ServerSession. | 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 | core: hle: kernel: Clear process list on boot. | bunnei | |
| 2020-12-28 | hle: service: vi: Refactor to grab buffer only once. | bunnei | |
| 2020-12-28 | service: nvflinger: Improve synchronization for BufferQueue. | bunnei | |
| - Use proper mechanisms for blocking on DequeueBuffer. - Ensure service thread terminates on emulation Shutdown. | |||
| 2020-12-28 | hle: service: Ensure system is powered on before writing IPC result. | bunnei | |
| 2020-12-28 | core: kernel: Clear process list earlier. | bunnei | |
| 2020-12-28 | hle: kernel: hle_ipc: Remove SleepClientThread. | bunnei | |
| - This was kind of hacky, and no longer is necessary with service threads. | |||
| 2020-12-28 | hle: service: bsd: Update to work with service threads, removing ↵ | bunnei | |
| SleepClientThread. | |||
| 2020-12-28 | hle: service: nvdrv: Revert #4981 to remove usage of SleepClientThread. | bunnei | |
| - Note, this always processes the ioctl right away, which fixes BotW 1.0.0 issues. | |||
| 2020-12-28 | hle: kernel: service_thread: Add parameter for thread pool size. | bunnei | |
| 2020-12-28 | hle: service: nvflinger: Refactor locking and interfaces. | bunnei | |
| 2020-12-28 | hle: service: vi: Remove usage of SleepClientThread. | bunnei | |
| 2020-12-28 | core: hle: server_session: Use separate threads for each service connection. | bunnei | |
| 2020-12-21 | Merge pull request #5042 from Morph1984/project-aether | bunnei | |
| Project Aether: Reimplementation of the Web Browser Applet | |||
| 2020-12-20 | Merge pull request #5131 from bunnei/scheduler-rewrite | bunnei | |
| Rewrite Kernel scheduler based on Atmosphere | |||
| 2020-12-18 | applets/web: Implement the online web browser applet | Morph | |
| 2020-12-18 | main, applets/web: Re-add progress dialog for RomFS extraction | Morph | |
| 2020-12-18 | pl_u, applets/web: Decrypt shared fonts to TTF files | Morph | |
| 2020-12-18 | ns_vm: Stub NeedsUpdateVulnerability | Morph | |
| This is used to force system updates on launching the web browser. We do not care about system updates so this can be set to false. | |||
| 2020-12-18 | controllers/npad: Make press_state atomic | Morph | |
| 2020-12-18 | applets/web: Implement the default web browser applet frontend | Morph | |
| 2020-12-18 | applets/web: Implement the offline browser applet backend | Morph | |
| 2020-12-18 | applets/web: Initial implementation of the web browser applet | Morph | |
| 2020-12-18 | applets: Remove the previous web browser applet implementation | Morph | |
| 2020-12-18 | buffer_queue: better use of std::array | ameerj | |
| 2020-12-17 | Overwrite slots instead of queuing them, add disconnect signal | ameerj | |
| Fix for Katana Zero and Yoshi's Crafted World | |||
| 2020-12-15 | Merge pull request #5190 from Morph1984/validate_device_handle | bunnei | |
| controllers/npad: Validate device handles before use | |||
| 2020-12-15 | Merge pull request #5119 from Morph1984/fs-opendatastoragewithprogramindex | bunnei | |
| fsp_srv: Implement OpenDataStorageWithProgramIndex | |||
| 2020-12-14 | Merge pull request #5168 from Morph1984/aoc-PurchaseEventManager | bunnei | |
| aoc_u: Stub IPurchaseEventManager and its service commands | |||
| 2020-12-12 | controllers/npad: Validate device handles before use | Morph | |
| Some games such as NEKOPARA Vol. 3 send invalid device handles when calling InitializeVibrationDevice. Introduce a check to validate the device handle before use. | |||
| 2020-12-11 | Merge pull request #5172 from lioncash/svc-wide | bunnei | |
| svc: Remove unnecessary casts | |||
| 2020-12-10 | Merge pull request #5123 from Morph1984/nim-IsLargeResourceAvailable | bunnei | |
| nim: Stub IsLargeResourceAvailable | |||
| 2020-12-09 | Merge pull request #5142 from comex/xx-poll-events | Rodrigo Locatti | |
| network, sockets: Replace `POLL_IN`, `POLL_OUT`, etc. constants with an `enum class PollEvents` | |||
| 2020-12-08 | Merge pull request #5166 from lioncash/log-cast | bunnei | |
| core: Remove unnecessary enum casts in log calls | |||
| 2020-12-08 | Merge pull request #5135 from Morph1984/applets-shadow | bunnei | |
| applets: Resolve variable shadowing | |||
| 2020-12-08 | svc: Remove unnecessary casts | Lioncash | |
| Simplifies and removes some casts. In all cases, these were generally widening from a 32-bit unsigned type to a 64-bit unsigned type, so no information would be lost from the conversion. | |||
| 2020-12-08 | IPurchaseEventManager: Implement GetPurchasedEventReadableHandle | Morph | |
| - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||
| 2020-12-08 | IPurchaseEventManager: Stub Set(Default)DeliveryTarget | Morph | |
| - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||
| 2020-12-08 | aoc_u: Stub Create(Permanent)EcPurchasedEventManager | Morph | |
| - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||
| 2020-12-08 | fsp_srv: Implement OpenDataStorageWithProgramIndex | Morph | |
| - Used by RollerCoaster Tycoon 3: Complete Edition | |||
| 2020-12-08 | file_sys: Consolidate common Title ID operations | Morph | |
| 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-12-07 | controller: Use std::move within ConvertToFrontendParameters() | Lioncash | |
| Avoids unnecessary copies. | |||
