| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-10-18 | core: hle: kernel: svc_common: Add WaitInfinite & cleanup. | bunnei | |
| 2022-10-17 | kernel: fix slab heap ABA | Liam | |
| 2022-10-14 | Merge pull request #9061 from liamwhite/writable-event | liamwhite | |
| kernel: remove KWritableEvent | |||
| 2022-10-12 | kernel: remove KWritableEvent | Liam | |
| 2022-10-11 | k_server_session: preliminary support for userspace server sessions | Liam | |
| 2022-10-11 | Add implementation of svcCreateSession | Liam | |
| 2022-10-03 | common: remove "yuzu:" prefix from thread names | Liam | |
| 2022-08-07 | Merge pull request #8637 from liamwhite/bad-interrupts | bunnei | |
| kernel: unlayer CPU interrupt handling | |||
| 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-07-25 | kernel: unlayer CPU interrupt handling | Liam | |
| 2022-07-25 | Merge pull request #8549 from liamwhite/kscheduler-sc | Morph | |
| kernel: use KScheduler from Mesosphere | |||
| 2022-07-22 | Project Andio | Kelebek1 | |
| 2022-07-15 | KCodeMemory: Mark virtual methods as override | Merry | |
| 2022-07-14 | kernel: Ensure all uses of disable_count are balanced | Liam | |
| 2022-07-14 | kernel: be more careful about initialization path for HLE threads | Liam | |
| 2022-07-14 | kernel: fix single-core preemption points | Liam | |
| 2022-07-14 | kernel: fix issues with single core mode | Liam | |
| 2022-07-14 | kernel: use KScheduler from mesosphere | Liam | |
| 2022-07-11 | Merge pull request #8559 from liamwhite/waiter-list | bunnei | |
| kernel: fix usage of waiter_list in Finalize | |||
| 2022-07-10 | PR | Kelebek1 | |
| 2022-07-10 | Rework CoreTiming | Kelebek1 | |
| 2022-07-09 | kernel: fix usage of waiter_list in Finalize | Liam | |
| 2022-07-07 | Merge pull request #8502 from liamwhite/end-wait | liamwhite | |
| kernel: clean up waiting implementation | |||
| 2022-07-05 | Merge pull request #8532 from liamwhite/fiber-supplements | liamwhite | |
| common/fiber: make fibers easier to use | |||
| 2022-07-02 | common/fiber: make fibers easier to use | Liam | |
| 2022-06-30 | cpu_manager: properly check idle on return from preemption | Liam | |
| 2022-06-28 | Merge pull request #8512 from german77/nnResult | Morph | |
| Replace multiple names with a better name | |||
| 2022-06-27 | Merge pull request #8504 from comex/mesosphere-current-process | bunnei | |
| Support `InfoType_MesosphereCurrentProcess` | |||
| 2022-06-26 | core: kernel: Replace instances of KPageLinkedList with KPageGroup | german77 | |
| 2022-06-26 | core: Replace all instances of ResultCode with Result | german77 | |
| 2022-06-25 | Re-add missing `case` and braces, and trim whitespace | comex | |
| 2022-06-25 | Update src/core/hle/kernel/svc.cpp | comex | |
| Co-authored-by: liamwhite <liamwhite@users.noreply.github.com> | |||
| 2022-06-25 | Support InfoType_MesosphereCurrentProcess | comex | |
| 2022-06-25 | kernel: clean up waiting implementation | Liam | |
| 2022-06-23 | kernel: make current thread pointer thread local | Liam | |
| 2022-06-22 | Merge pull request #8491 from Morph1984/extra-assert | bunnei | |
| KPageTable: Remove extraneous assert | |||
| 2022-06-22 | Merge pull request #8483 from liamwhite/fire-emblem-three-semaphores | bunnei | |
| kernel: wait for threads to stop on pause | |||
| 2022-06-21 | KPageTable: Remove extraneous assert | Morph | |
| Since start is always 0 and VAddr is unsigned, we can safely remove this assert. | |||
| 2022-06-21 | Merge pull request #8432 from liamwhite/watchpoint | bunnei | |
| core/debugger: memory breakpoint support | |||
| 2022-06-21 | Merge pull request #8468 from liamwhite/dispatch-tracking | bunnei | |
| kernel: fix some uses of disable_count | |||
| 2022-06-18 | kernel: wait for threads to stop on pause | Liam | |
| 2022-06-16 | Implement ExitProcess svc | Nikita Strygin | |
| Currently this just stops all the emulation This works under assumption that only application will try to use ExitProcess, with services not touching it If application exits - it quite makes sense to end the emulation | |||
| 2022-06-16 | core/debugger: memory breakpoint support | Liam | |
| 2022-06-15 | kernel: fix some uses of disable_count | Liam | |
| 2022-06-16 | Merge pull request #8457 from liamwhite/kprocess-suspend | Fernando S | |
| kernel: implement KProcess suspension | |||
| 2022-06-15 | Merge pull request #8464 from liamwhite/break-debug | Mai | |
| kernel: notify debugger on break SVC | |||
| 2022-06-14 | kernel: notify debugger on break SVC | Liam | |
| 2022-06-14 | core: centralize profile scope for Dynarmic | Liam | |
| 2022-06-14 | kernel: implement KProcess suspension | Liam | |
| 2022-06-13 | kernel: fix passthrough of local captures in lambda | Liam | |
