summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_shared_memory.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* chore: make yuzu REUSE compliantAndrea Pappacoda2022-07-271-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [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
* core: kernel: Replace instances of KPageLinkedList with KPageGroupgerman772022-06-271-3/+3
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-7/+7
|
* core: Remove unused includesameerj2021-11-041-1/+0
|
* kernel: Add missing override specifiersLioncash2021-05-291-2/+2
| | | | | | | | 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.
* kernel: Eliminate variable shadowingLioncash2021-05-081-8/+7
| | | | | Now that the large kernel refactor is merged, we can eliminate the remaining variable shadowing cases.
* hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei2021-05-061-5/+14
|
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-4/+4
|
* hle: kernel: Remove deprecated Object class.bunnei2021-05-061-13/+0
|
* hle: kernel: Migrate KResourceLimit to KAutoObject.bunnei2021-05-061-1/+1
|
* hle: kernel: Migrate KSharedMemory to KAutoObject.bunnei2021-05-061-13/+21
|
* hle: kernel: Migrate PageLinkedList to KPageLinkedList.bunnei2021-02-191-3/+3
|
* hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.bunnei2021-02-191-6/+6
|
* hle: kernel: Rename SharedMemory to KSharedMemory.bunnei2021-02-191-0/+87