| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-01-18 | Core: Make sure GPU Dirty Managers ae shared by all processes. | Fernando Sahmkow | |
| 2023-12-24 | kernel: remove unecessary process member from handle table | Liam | |
| 2023-12-22 | general: properly support multiple memory instances | Liam | |
| 2023-12-22 | kernel: instantiate memory separately for each guest process | Liam | |
| 2023-12-04 | core: refactor emulated cpu core activation | Liam | |
| 2023-11-25 | core: Define HAS_NCE macro | GPUCode | |
| 2023-11-25 | Address some review comments | GPUCode | |
| 2023-11-25 | arm: Implement native code execution backend | Liam | |
| 2023-11-25 | kernel: Manually specify aslr region start | Liam | |
| 2023-11-10 | kernel: add KPageTableBase | Liam | |
| Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk> | |||
| 2023-10-21 | kernel: update KProcess | Liam | |
| 2023-09-14 | core: improve debug workflow | Liam | |
| 2023-08-25 | kernel: offset code entry point for 39-bit address space type (#11326) | liamwhite | |
| 2023-07-14 | k_process: PageTable -> GetPageTable | Liam | |
| 2023-03-23 | memory: rename global memory references to application memory | Liam | |
| 2023-03-22 | kernel: use KTypedAddress for addresses | Liam | |
| 2023-03-12 | kernel: convert KProcess to new style | Liam | |
| 2023-03-12 | kernel: remove kernel_ | Liam | |
| 2023-03-12 | kernel: convert KPort, KSession | Liam | |
| 2023-03-12 | general: fix spelling mistakes | Liam | |
| 2023-03-06 | hle: rename legacy errors to Results | Liam | |
| 2022-12-15 | kernel: process: Implement GetFreeThreadCount | Narr the Reg | |
| Used by Just Dance® 2023 Edition | |||
| 2022-10-19 | core: hle: kernel: Migrate ProcessState to enum class. | bunnei | |
| 2022-10-18 | core: hle: kernel: Use result macros for new/changed code. | bunnei | |
| 2022-10-18 | core: hle: kernel: k_process: Improve management of page table & cleanup. | bunnei | |
| 2022-10-18 | core: hle: kernel: k_process: Change Status -> State. | bunnei | |
| 2022-07-27 | chore: make yuzu REUSE compliant | Andrea Pappacoda | |
| [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254 | |||
| 2022-06-26 | core: Replace all instances of ResultCode with Result | german77 | |
| 2022-06-16 | core/debugger: memory breakpoint support | Liam | |
| 2022-06-14 | kernel: implement KProcess suspension | Liam | |
| 2022-04-03 | k_process: Fix data race | lat9nq | |
| TSan reported a race between thread 36 and thread 34, a read at :225 and a write at :225 respectively. Make total_proces_running_time_ticks atomic to avoid this race. | |||
| 2022-03-19 | core: Reduce unused includes | ameerj | |
| 2022-03-14 | core: hle: kernel: k_process: Implement thread local storage accurately. | bunnei | |
| 2022-02-21 | core: hle: kernel: KProcess: Pass in KResourceLimit on process creation. | bunnei | |
| - This allows us to have a resource limit per process, rather than use the global system resource limit. | |||
| 2022-01-22 | hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount. | bunnei | |
| - Previously implementation was incorrect, and would occasionally underflow. | |||
| 2022-01-14 | core: hle: kernel: KProcess: Integrate with KWorkerTask and add ↵ | bunnei | |
| unimplemented DoWorkerTaskImpl. | |||
| 2021-12-30 | core: hle: kernel: Implement thread pinning. | bunnei | |
| - We largely had the mechanics in place for thread pinning, this change hooks these up. - Validated with tests https://github.com/Atmosphere-NX/Atmosphere/blob/master/tests/TestSvc/source/test_thread_pinning.cpp. | |||
| 2021-12-06 | hle: kernel k_process: Remove unnecessary .at usage with thread pinning methods. | bunnei | |
| 2021-12-06 | hle: kernel: KProcess: Improvements for thread pinning. | bunnei | |
| 2021-11-04 | general: Rename GetTitleID to GetProgramID | Morph | |
| 2021-11-03 | core: Remove unused includes | ameerj | |
| 2021-09-29 | Fix KShareMemory object leak | Feng Chen | |
| 2021-06-02 | general: Replace RESULT_SUCCESS with ResultSuccess | Morph | |
| Transition to PascalCase for result names. | |||
| 2021-05-29 | kernel: Add missing override specifiers | Lioncash | |
| Over the course of the kernel refactoring a tiny bit of missing overrides slipped through review, so we can add these. While we're at it, we can remove redundant virtual keywords where applicable as well. | |||
| 2021-05-08 | kernel: Eliminate variable shadowing | Lioncash | |
| Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases. | |||
| 2021-05-05 | hle: kernel: Migrate to KHandleTable. | bunnei | |
| 2021-05-05 | hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory. | bunnei | |
| 2021-05-05 | hle: kernel: Rename Process to KProcess. | bunnei | |
