summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_process.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Core: Make sure GPU Dirty Managers ae shared by all processes.Fernando Sahmkow2024-01-191-10/+4
|
* Merge pull request #12677 from GPUCode/whyy-moddersliamwhite2024-01-151-2/+2
|\ | | | | core: Support multiple modules per patcher
| * core: Support multiple modules per patcherGPUCode2024-01-141-2/+2
| |
* | kernel: fix page leak on process terminationLiam2024-01-131-0/+6
|/
* core: track separate heap allocation for linuxLiam2023-12-261-2/+4
|
* kernel: restrict nce to applicationsLiam2023-12-231-2/+2
|
* general: properly support multiple memory instancesLiam2023-12-231-15/+21
|
* kernel: instantiate memory separately for each guest processLiam2023-12-231-6/+12
|
* core: refactor emulated cpu core activationLiam2023-12-041-4/+36
|
* general: fix mac compileLiam2023-11-271-1/+1
|
* arm: Implement native code execution backendLiam2023-11-251-0/+11
|
* kernel: Manually specify aslr region startLiam2023-11-251-6/+6
|
* kernel: add KPageTableBaseLiam2023-11-101-9/+9
| | | | Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
* kernel: update KProcessLiam2023-10-221-451/+991
|
* kernel: fix incorrect calculation of used non system memory valueLiam2023-10-201-1/+1
|
* core: improve debug workflowLiam2023-09-141-1/+4
|
* kernel: offset code entry point for 39-bit address space type (#11326)liamwhite2023-08-251-5/+20
|
* Merge pull request #10839 from lat9nq/pgc-plusliamwhite2023-08-021-1/+2
|\ | | | | general: Reimplement per-game configurations
| * settings,core,config_sys: Remove optional type from custom_rtc, rng_seedlat9nq2023-07-211-1/+2
| | | | | | | | core: Fix MSVC errors
* | k_process: PageTable -> GetPageTableLiam2023-07-151-1/+1
|/
* memory: rename global memory references to application memoryLiam2023-03-241-10/+12
|
* kernel: use KTypedAddress for addressesLiam2023-03-221-16/+19
|
* kernel: additional style fixes to KThread, KProcessLiam2023-03-131-10/+10
|
* kernel: convert KProcess to new styleLiam2023-03-131-132/+136
|
* kernel: convert KThread to new styleLiam2023-03-131-1/+0
|
* kernel: prefer std::addressofLiam2023-03-131-3/+4
|
* kernel: remove kernel_Liam2023-03-131-34/+34
|
* general: fix spelling mistakesLiam2023-03-121-1/+1
|
* kernel: be more careful about kernel address keysLiam2023-03-011-1/+1
|
* kernel: refactor priority inheritance to represent locks as C++ objectsLiam2023-03-011-2/+2
|
* service: refactor server architectureLiam2023-02-211-4/+0
| | | | Converts services to have their own processes
* core: kernel: k_process: Use application system resource.bunnei2023-02-111-1/+1
|
* kernel: KPageTable: updateLiam2023-01-221-15/+25
|
* kernel: process: Implement GetFreeThreadCountNarr the Reg2022-12-151-0/+11
| | | | Used by Just Dance® 2023 Edition
* Add break for default casesKyle Kienapfel2022-11-141-0/+1
| | | | | | | | | | | Visual Studio has an option to search all files in a solution, so I did a search in there for "default:" looking for any missing break statements. I've left out default statements that return something, and that throw something, even if via ThrowInvalidType. UNREACHABLE leads towards throw R_THROW macro leads towards a return
* kernel/svc_types: refreshLiam2022-11-101-7/+7
|
* core: hle: kernel: Integrate system KSystemResource.bunnei2022-11-041-2/+2
|
* core: hle: kernel: Use result macros for new/changed code.bunnei2022-10-191-27/+15
|
* core: hle: kernel: k_process: Improve management of page table & cleanup.bunnei2022-10-191-25/+37
|
* core: hle: kernel: Integration application memory block slab manager.bunnei2022-10-191-3/+3
|
* core: hle: kernel: k_process: Change Status -> State.bunnei2022-10-191-10/+10
|
* 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
* Merge pull request #8502 from liamwhite/end-waitliamwhite2022-07-071-1/+1
|\ | | | | kernel: clean up waiting implementation
| * kernel: clean up waiting implementationLiam2022-06-251-1/+1
| |
* | core: Replace all instances of ResultCode with Resultgerman772022-06-271-18/+17
| |
* | kernel: make current thread pointer thread localLiam2022-06-231-4/+6
|/
* Merge pull request #8432 from liamwhite/watchpointbunnei2022-06-221-0/+46
|\ | | | | core/debugger: memory breakpoint support
| * core/debugger: memory breakpoint supportLiam2022-06-161-0/+46
| |
* | kernel: fix some uses of disable_countLiam2022-06-161-10/+5
|/
* kernel: implement KProcess suspensionLiam2022-06-141-5/+54
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-1/+1
|
* core/debugger: Implement new GDB stub debuggerLiam2022-06-011-0/+4
|
* core: Reduce unused includesameerj2022-03-191-2/+0
|
* core: hle: kernel: k_process: Remove handle table finalize, reset page table.bunnei2022-03-151-3/+3
|
* core: hle: kernel: k_process: Implement thread local storage accurately.bunnei2022-03-151-100/+88
|
* core: hle: kernel: KProcess: Pass in KResourceLimit on process creation.bunnei2022-02-211-6/+5
| | | | - This allows us to have a resource limit per process, rather than use the global system resource limit.
* hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount.bunnei2022-01-231-11/+15
| | | | - Previously implementation was incorrect, and would occasionally underflow.
* core: hle: kernel: KProcess: Integrate with KWorkerTask and add unimplemented DoWorkerTaskImpl.bunnei2022-01-151-1/+5
|
* hle: kernel: k_page_table: Update SetProcessMemoryPermission.bunnei2022-01-121-4/+4
|
* hle: kernel: k_page_table: ReadAndWrite -> UserReadWrite.bunnei2022-01-121-3/+3
|
* core: hle: kernel: Implement thread pinning.bunnei2021-12-311-7/+5
| | | | | - 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.
* core: hle: kernel: Updated implementation of svcSetHeapSize.bunnei2021-12-281-4/+4
| | | | | - Updates our svcSetHeapSize with latest HOS, furthermore allowing heap size to properly be extended/shrunk. - Validated with tests https://github.com/Atmosphere-NX/Atmosphere/blob/master/tests/TestSvc/source/test_set_heap_size.cpp.
* core: hle: Remove global HLE lock.bunnei2021-12-181-2/+0
| | | | | - This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
* hle: kernel: KProcess: Improvements for thread pinning.bunnei2021-12-071-5/+22
|
* core: hle: kernel: k_process: DisableDispatch on main thread.bunnei2021-12-071-0/+1
|
* kernel: KPageTable: Rename SetCodeMemoryPermission to SetProcessMemoryPermissionMorph2021-11-211-1/+1
|
* Fix dangling kernel objects when exitingFeng Chen2021-10-271-5/+6
|
* Fix KShareMemory object leakFeng Chen2021-09-291-3/+51
|
* Revert "kernel: Various improvements to scheduler"bunnei2021-08-261-1/+0
|
* core: hle: kernel: k_process: DisableDispatch on main thread.bunnei2021-08-071-0/+1
|
* hle: kernel: KProcess: Change process termination assert to a warning.bunnei2021-07-211-1/+1
| | | | - Since we do not implement multiprocess right now, this should not be a crashing assert.
* hle: kernel: k_process: Close the handle table on shutdown.bunnei2021-07-211-0/+3
|
* hle: kernel: k_process: Close main thread reference after it is inserted into handle table.bunnei2021-07-211-0/+3
|
* kernel: Unconditionally set thread state when appropriateMorph2021-06-111-9/+7
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-4/+4
| | | | 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: Migrate to KHandleTable.bunnei2021-05-061-1/+1
|
* hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei2021-05-061-0/+25
|
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-0/+505