aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
AgeCommit message (Collapse)Author
2022-10-31kernel: fix single core for service threadsLiam
2022-10-31kernel: fix port trackingLiam
2022-10-31k_server_session: add SendReplyHLELiam
2022-10-31service_thread: convert to map for session managementLiam
2022-10-31kernel: invert session request handling flowLiam
2022-10-30k_thread: fix single coreLiam
2022-10-29k_server_session: fix crashesLiam
2022-10-26Merge pull request #9125 from liamwhite/dummy-schedulerbunnei
kernel: refactor dummy thread wakeups
2022-10-26concepts: Use the std::contiguous_iterator conceptMorph
This also covers std::span, which does not have a const iterator. Also renames IsSTLContainer to IsContiguousContainer to explicitly convey its semantics.
2022-10-25Merge pull request #9119 from liamwhite/shutdown-barrierliamwhite
core: barrier service thread shutdown
2022-10-24kernel: refactor dummy thread wakeupsLiam
2022-10-23core: barrier service thread shutdownLiam
2022-10-22general: Enforce C4800 everywhere except in video_coreMorph
2022-10-21k_session_request: Add missing override specifierLioncash
2022-10-21k_session_request: Turn C-style array into std::arrayLioncash
Makes for stronger typing and allows tooling bounds checks provided by the standard library for debugging purposes.
2022-10-21k_session_request: Simplify constructor initializationLioncash
2022-10-19kernel: remove most SessionRequestManager handling from KServerSessionLiam
2022-10-19kernel: add KSessionRequestLiam
2022-10-19Merge pull request #9083 from liamwhite/take-a-chance-on-meliamwhite
kernel: fix slab heap ABA
2022-10-19core: hle: kernel: Migrate ProcessState to enum class.bunnei
2022-10-18core: hle: kernel: Use result macros for new/changed code.bunnei
2022-10-18core: hle: kernel: Fix InitializePreemption order.bunnei
2022-10-18core: hle: kernel: k_process: Improve management of page table & cleanup.bunnei
2022-10-18core: hle: kernel: k_interrupt_manager: HandleInterrupt should not depend on ↵bunnei
current process.
2022-10-18core: hle: kernel: Remove junk.bunnei
2022-10-18core: hle: kernel: k_page_table: Impl. LockForUn/MapDeviceAddressSpace, cleanup.bunnei
2022-10-18core: hle: kernel: Integration application memory block slab manager.bunnei
2022-10-18core: hle: kernel: k_page_table: Update, and integrate with new ↵bunnei
KMemoryBlockManager/SlabManager.
2022-10-18core: hle: kernel: k_memory_block: Update.bunnei
2022-10-18core: hle: kernel: k_memory_block_manager: Update.bunnei
2022-10-18core: hle: kernel: k_thread: Implement thread termination DPC.bunnei
2022-10-18core: hle: kernel: Add KDynamicResourceManager.bunnei
2022-10-18core: hle: kernel: Add KDynamicSlabHeap.bunnei
2022-10-18core: hle: kernel: Add KDynamicPageManager.bunnei
2022-10-18core: hle: kernel: k_process: Change Status -> State.bunnei
2022-10-18core: hle: kernel: svc_types: Add SystemThreadPriorityHighest and ProcessState.bunnei
2022-10-18core: device_memory: Templatize GetPointer(..).bunnei
2022-10-18core: hle: kernel: svc_common: Add WaitInfinite & cleanup.bunnei
2022-10-17kernel: fix slab heap ABALiam
2022-10-14Merge pull request #9061 from liamwhite/writable-eventliamwhite
kernel: remove KWritableEvent
2022-10-12kernel: remove KWritableEventLiam
2022-10-11k_server_session: preliminary support for userspace server sessionsLiam
2022-10-11Add implementation of svcCreateSessionLiam
2022-10-03common: remove "yuzu:" prefix from thread namesLiam
2022-08-07Merge pull request #8637 from liamwhite/bad-interruptsbunnei
kernel: unlayer CPU interrupt handling
2022-07-27chore: make yuzu REUSE compliantAndrea 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-25kernel: unlayer CPU interrupt handlingLiam
2022-07-25Merge pull request #8549 from liamwhite/kscheduler-scMorph
kernel: use KScheduler from Mesosphere
2022-07-22Project AndioKelebek1
2022-07-15KCodeMemory: Mark virtual methods as overrideMerry