| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-05-05 | hle: kernel: svc_results: Update naming.. | bunnei | |
| 2021-05-05 | hle: kernel: KThread: Add missing resource hint release. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject. | bunnei | |
| 2021-05-05 | hle: ipc_helpers: Add methods for copy/move references. | bunnei | |
| 2021-05-05 | hle: kernel: Move slab heaps to their own container. | bunnei | |
| 2021-05-05 | hle: kernel: Refactor several threads/events/sharedmemory to use slab heaps. | bunnei | |
| 2021-05-05 | hle: kernel: Move slab heap management to KernelCore. | bunnei | |
| 2021-05-05 | hle: kernel: Ensure all kernel objects with KAutoObject are properly created. | bunnei | |
| 2021-05-05 | hle: kernel: Use unique_ptr for suspend and dummy threads. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KEvent to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KSharedMemory to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KProcess to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: Refactor IPC interfaces to not use std::shared_ptr. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate more of KThread to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: svc: Migrate GetThreadPriority, StartThread, and ExitThread. | bunnei | |
| 2021-05-05 | hle: kernel: svc: Migrate CreateThread. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate idle threads. | bunnei | |
| 2021-05-05 | hle: kernel: Migrate KThread to KAutoObject. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of slab setup. | bunnei | |
| 2021-05-05 | hle: kernel: Refactor out various KThread std::shared_ptr usage. | bunnei | |
| 2021-05-05 | core: Defer CoreTiming initialization. | bunnei | |
| 2021-05-05 | core: memory: Add a work-around to allocate and access kernel memory regions ↵ | bunnei | |
| by vaddr. | |||
| 2021-05-05 | hle: kernel: Add initial impl. of KLinkedList. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of KSlabAllocated. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of KAutoObjectWithListContainer. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of KAutoObject. | bunnei | |
| 2021-05-05 | Merge pull request #6279 from ogniK5377/nvhost-prof | bunnei | |
| nvdrv: /dev/nvhost-prof-gpu for production | |||
| 2021-05-05 | Update src/core/hle/service/nvdrv/interface.cpp | bunnei | |
| Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com> | |||
| 2021-05-05 | hid: Improve hardware accuracy of gestures | german77 | |
| 2021-05-05 | service: Remove unused class variables | Lioncash | |
| Prevents some warnings from occurring. | |||
| 2021-05-04 | service: Resolve cases of member field shadowing | Lioncash | |
| Now all that remains is for kernel code to be 'shadow-free' and then -Wshadow can be turned into an error. | |||
| 2021-05-03 | Merge pull request #6278 from lioncash/misc-shadow | bunnei | |
| core: Resolve misc straggler cases of variable shadowing | |||
| 2021-05-03 | core: Resolve misc cases of variable shadowing | Lioncash | |
| Resolves shadowing warnings that aren't in a particularly large subsection of core. Brings us closer to turning -Wshadow into an error. All that remains now is for cases in the kernel (left untouched for now since a big change by bunnei is pending), and a few left over in the service code (will be tackled next). | |||
| 2021-05-03 | nvdrv: /dev/nvhost-prof-gpu for production | Chloe Marcec | |
| While we're at it, we can fix the is_initialized error code. This fixes the crashes on Shante | |||
| 2021-05-02 | hid: Fix touch not initializing properly if disabled | german77 | |
| 2021-05-02 | Merge pull request #6269 from lioncash/file-shadow | bunnei | |
| file_sys: Resolve cases of variable shadowing | |||
| 2021-05-02 | Merge pull request #6265 from Morph1984/snap-save-fix | bunnei | |
| service: filesystem: Return proper error codes for CreateFile | |||
| 2021-05-02 | file_sys: Resolve cases of variable shadowing | Lioncash | |
| Brings us closer to enabling -Wshadow as an error in the core code. | |||
| 2021-05-01 | service: filesystem: Return proper error codes for CreateFile | Morph | |
| This improves the accuracy of CreateFile by returning the correct error codes on certain conditions (parent directory does not exist, path already exists). This fixes saving and the loading of existing saves in New Pokemon Snap | |||
| 2021-04-30 | Disable touch if setting is not enabled | german77 | |
| 2021-04-30 | Merge pull request #6257 from Morph1984/fix-use-after-free-webapplet | bunnei | |
| applets/web: Fix a use-after-free when passing in the URL string | |||
| 2021-04-29 | Merge pull request #6226 from german77/sevensix | bunnei | |
| hid: Implement SevenSixAxis and ConsoleSixAxisSensor | |||
| 2021-04-28 | applets/web: Fix a use-after-free when passing in the URL string | Morph | |
| The URL string was being deleted before being used, leading to a use-after-free occurring when it is used afterwards. Fix this by taking the string by const ref to extend its lifetime, ensuring it doesn't get deleted before use. | |||
| 2021-04-27 | loader: Resolve instances of variable shadowing | Lioncash | |
| Eliminates variable shadowing cases across all the loaders to bring us closer to enabling variable shadowing as an error in core. | |||
| 2021-04-26 | address comments | german77 | |
| 2021-04-26 | service: Eliminate cases of member shadowing | Lioncash | |
| Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors. | |||
| 2021-04-24 | nvhost_vic: Fix device closure | ameerj | |
| Implements the OnClose method of the nvhost_vic device, and removes the remnants of an older implementation. Also cleans up some of the surrounding code. | |||
| 2021-04-24 | Merge pull request #6234 from Morph1984/stub-am | Mat M | |
| ICommonStateGetter: Stub SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled | |||
| 2021-04-24 | Merge pull request #6235 from german77/ectx_aw | Mat M | |
| glue: Add ectx:aw service placeholder | |||
| 2021-04-24 | glue: Add ectx:aw placeholder | german77 | |
