summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_shared_memory.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* k_process: PageTable -> GetPageTableLiam2023-07-151-3/+3
|
* kernel: use KTypedAddress for addressesLiam2023-03-221-2/+3
|
* kernel: remove unnecessary finalize callsLiam2023-03-131-3/+0
|
* kernel: prefer std::addressofLiam2023-03-131-1/+2
|
* kernel: remove kernel_Liam2023-03-131-4/+4
|
* kernel: conver KScopedLock, KScopedResourceReservation, KSessionRequest, KSharedMemory, KSpinLockLiam2023-03-131-27/+28
|
* kernel: convert KPort, KSessionLiam2023-03-131-7/+5
|
* kernel: KPageTable: updateLiam2023-01-221-3/+3
|
* Revert "Revert "k_page_group: synchronize""bunnei2023-01-081-13/+6
|
* Revert "k_page_group: synchronize"gidoly2022-12-291-6/+13
|
* k_page_group: synchronizeLiam2022-12-251-13/+6
|
* kernel: workaround static shared memory initializationLiam2022-12-231-25/+44
|
* kernel/svc_types: refreshLiam2022-11-101-3/+3
|
* core: device_memory: Templatize GetPointer(..).bunnei2022-10-191-1/+1
|
* 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-2/+1
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-9/+8
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-1/+1
| | | | Transition to PascalCase for result names.
* kernel: Eliminate variable shadowingLioncash2021-05-081-8/+8
| | | | | 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-14/+17
|
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-2/+2
|
* hle: kernel: Migrate KResourceLimit to KAutoObject.bunnei2021-05-061-7/+21
|
* hle: kernel: Migrate KSharedMemory to KAutoObject.bunnei2021-05-061-19/+36
|
* hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei2021-02-191-3/+2
|
* hle: kernel: Migrate PageLinkedList to KPageLinkedList.bunnei2021-02-191-1/+1
|
* hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others.bunnei2021-02-191-6/+6
|
* hle: kernel: Rename SharedMemory to KSharedMemory.bunnei2021-02-191-0/+66