summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_process.h (unfollow)
Commit message (Expand)AuthorFilesLines
2022-12-15kernel: process: Implement GetFreeThreadCountNarr the Reg1-0/+3
2022-10-19core: hle: kernel: Migrate ProcessState to enum class.bunnei1-8/+8
2022-10-19core: hle: kernel: Use result macros for new/changed code.bunnei1-5/+11
2022-10-19core: hle: kernel: k_process: Improve management of page table & cleanup.bunnei1-12/+19
2022-10-19core: hle: kernel: k_process: Change Status -> State.bunnei1-25/+15
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda1-3/+2
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-16/+15
2022-06-16core/debugger: memory breakpoint supportLiam1-0/+30
2022-06-14kernel: implement KProcess suspensionLiam1-4/+12
2022-04-04k_process: Fix data racelat9nq1-1/+1
2022-03-19core: Reduce unused includesameerj1-1/+0
2022-03-15core: hle: kernel: k_process: Implement thread local storage accurately.bunnei1-9/+9
2022-02-21core: hle: kernel: KProcess: Pass in KResourceLimit on process creation.bunnei1-1/+1
2022-01-23hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount.bunnei1-5/+3
2022-01-15core: hle: kernel: KProcess: Integrate with KWorkerTask and add unimplemented DoWorkerTaskImpl.bunnei1-2/+4
2021-12-31core: hle: kernel: Implement thread pinning.bunnei1-2/+2
2021-12-07hle: kernel k_process: Remove unnecessary .at usage with thread pinning methods.bunnei1-3/+3
2021-12-07hle: kernel: KProcess: Improvements for thread pinning.bunnei1-3/+4
2021-11-04general: Rename GetTitleID to GetProgramIDMorph1-2/+2
2021-11-04core: Remove unused includesameerj1-1/+0
2021-09-29Fix KShareMemory object leakFeng Chen1-0/+4
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-1/+1
2021-05-29kernel: Add missing override specifiersLioncash1-4/+4
2021-05-08kernel: Eliminate variable shadowingLioncash1-2/+2
2021-05-06hle: kernel: Migrate to KHandleTable.bunnei1-4/+4
2021-05-06hle: kernel: Improve MapSharedMemory and implement UnmapSharedMemory.bunnei1-0/+3
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-5/+6
2021-05-06hle: kernel: Remove deprecated Object class.bunnei1-15/+0
2021-05-06hle: kernel: Migrate KResourceLimit to KAutoObject.bunnei1-5/+3
2021-05-06hle: kernel: Migrate KProcess to KAutoObject.bunnei1-9/+23
2021-02-19hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable.bunnei1-7/+4
2021-02-05hle: kernel: svc: Cleanup KEvent/KReadableEvent/KWritableEvent SVCs.bunnei1-1/+1
2021-01-30kernel: Rewrite resource limit to be more accurateChloe Marcec1-3/+3
2021-01-29hle: kernel: process: Add state lock.bunnei1-0/+6
2021-01-29hle: kernel: Recode implementation of KThread to be more accurate.bunnei1-0/+63
2021-01-29core: hle: kernel: object: Implement Finalize() virtual method.bunnei1-0/+2
2021-01-29hle: kernel: KThread: Clean up thread priorities.bunnei1-1/+6
2021-01-29core: hle: kernel: Rename Thread to KThread.bunnei1-5/+5
2021-01-11core: hle: Integrate new KConditionVariable and KAddressArbiter implementations.bunnei1-28/+22
2021-01-11core: hle: kernel: Update KSynchronizationObject.bunnei1-8/+6
2020-12-06hle: kernel: Process: Various style fixes based on code review feedback.bunnei1-2/+2
2020-12-06hle: kernel: process: Add schedule count tracking, to be used for yield impl.bunnei1-0/+13
2020-07-15kernel/process: Move name and system context to the bottom of the member listLioncash1-6/+6
2020-04-17kernel: process: Updates for new VMM.bunnei1-18/+27
2020-02-11Kernel: Refactor synchronization to better match REFernando Sahmkow1-4/+0
2020-02-11Kernel: Change WaitObject to Synchronization object. In order to better reflect RE.Fernando Sahmkow1-2/+2
2019-11-25kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei1-10/+11
2019-11-21Kernel: Optimize condition variable threads management.Fernando Sahmkow1-1/+2
2019-11-21Kernel: Correct behavior of Condition Variables to be more similar to real hardware.Fernando Sahmkow1-0/+12
2019-07-07address review commentaryMichael Scire1-4/+19
2019-07-07Implement MapPhysicalMemory/UnmapPhysicalMemoryMichael Scire1-3/+8
2019-07-07kernel/process: Allocate the process' TLS region during initializationLioncash1-0/+8
2019-07-07kernel/process: Move main thread stack allocation to its own functionLioncash1-0/+3
2019-07-04kernel/process: Default initialize all member variablesLioncash1-2/+2
2019-07-04kernel/process: Decouple TLS handling from threadsLioncash1-4/+4
2019-06-10kernel: Differentiate kernel and user processes when picking IDZach Hilman1-1/+7
2019-06-10kernel/process: Make Create()'s name parameter be taken by valueLioncash1-1/+1
2019-06-10kernel/svc: Implement TotalMemoryUsedWithoutMmHeap/TotalMemoryAvailableWithoutMmHeapLioncash1-0/+11
2019-06-05kernel/process: Remove unused boost header includeLioncash1-1/+0
2019-04-12core/core: Move process execution start to System's Load()Lioncash1-2/+5
2019-04-11kernel: Make handle type declarations constexprLioncash1-1/+1
2019-04-02kernel/svc: Implement svcGetThreadListLioncash1-0/+17
2019-04-02kernel/wait_object: Make ShouldWait() take thread members by pointer-to-constLioncash1-1/+1
2019-03-29kernel/process: Report total physical memory used to svcGetInfoLioncash1-0/+3
2019-03-29kernel/process: Store the total size of the code memory loadedLioncash1-0/+3
2019-03-28kernel/process: Store the main thread stack size to a data memberLioncash1-0/+3
2019-03-28kernel/process: Make Run's stack size parameter a u64Lioncash1-1/+1
2019-03-24kernel/process: Remove unused AddressMapping structLioncash1-8/+0
2019-03-20kernel: Move CodeSet structure to its own source filesLioncash1-41/+2
2019-03-15core/hle/kernel: Make Mutex a per-process class.Lioncash1-0/+16
2019-03-13kernel/process: Remove use of global system accessorsLioncash1-1/+5
2019-03-08kernel: Make the address arbiter instance per-processLioncash1-2/+20
2019-01-01core/kernel: Remove unnecessary inclusionsLioncash1-1/+1
2018-12-31kernel/process: Rename GetAllowedProcessorMask() and GetAllowedThreadPriorityMask()Lioncash1-3/+3
2018-12-28kernel: Rename 'default' CPU core to 'ideal' coreLioncash1-5/+5
2018-12-28kernel/process: Remove most allocation functions from Process' interfaceLioncash1-8/+1
2018-12-21kernel/process: Hook up the process capability parser to the process itselfLioncash1-45/+13
2018-12-19kernel/kernel: Use correct initial PID for userland Process instancesLioncash1-0/+12
2018-12-19kernel/process: Make process_id a 64-bit valueLioncash1-3/+3
2018-12-12vm_manager: Amend MemoryState enum membersLioncash1-2/+1
2018-12-05kernel/process: Make Process a WaitObjectLioncash1-2/+28
2018-12-04kernel/svc: Implement the resource limit svcGetInfo optionLioncash1-8/+1
2018-11-20kernel/process: Move <random> include to the cpp fileLioncash1-1/+0
2018-11-15process: Make MirrorMemory take state to map new memory asZach Hilman1-1/+2
2018-11-13kernel/process: Migrate heap-related memory management out of the process class and into the vm managerLioncash1-11/+0
2018-11-13svc: Use proper random entropy generation algorithmZach Hilman1-0/+11
2018-10-26svc: Implement svcGetInfo command 0xF0000002Lioncash1-0/+13
2018-10-20kernel/process: Make the handle table per-processLioncash1-0/+14
2018-10-13svc: Implement svcGetProcessInfoLioncash1-3/+18
2018-10-12kernel/process: Make CodeSet a regular non-inherited objectLioncash1-23/+5
2018-09-30kernel/process: Add a data member to determine if a process is 64-bit or not.Lioncash1-0/+10
2018-09-30kernel/process: Make data member variables privateLioncash1-26/+71
2018-09-24process/vm_manager: Amend API to allow reading parameters from NPDM metadataLioncash1-0/+12
2018-09-21svc: Move most process termination code to its own function within ProcessLioncash1-5/+22
2018-09-21thread/process: Move TLS slot marking/freeing to the process classLioncash1-11/+17
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-2/+2
2018-08-29kernel: Eliminate kernel global stateLioncash1-13/+8
2018-08-03kernel/process: Use std::array where applicableLioncash1-1/+2
2018-08-03kernel/process: Use accessors instead of class members for referencing segment arrayLioncash1-12/+32
2018-08-03core/memory: Get rid of 3DS leftoversLioncash1-13/+4
2018-08-02kernel: Move object class to its own source filesLioncash1-1/+1
2018-03-14core: Move process creation out of global state.bunnei1-2/+1
2018-03-02Kernel: Store the program id in the Process class instead of the CodeSet class.Subv1-4/+5
2018-01-16Added more svcGetInfo pairsDavid Marcec1-0/+2
2018-01-10Threads: Added enum values for the Switch's 4 cpu cores and implemented svcGetInfo(AllowedCpuIdBitmask)Subv1-0/+4
2018-01-01svc: Implement svcExitProcess.bunnei1-2/+11
2017-12-31svc: Implement svcUnmapMemory.bunnei1-0/+3
2017-12-29kernel: Various 64-bit fixes in memory/process/threadbunnei1-3/+3
2017-12-29process: Add method to mirror a memory region.bunnei1-0/+2
2017-09-30nso: Refactor and allocate .bss section.bunnei1-4/+5
2017-09-30process: Support loading multiple codesets.bunnei1-1/+7
2017-05-10Kernel: Map special regions according to ExHeaderYuri Kunde Schlesner1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+0
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-18/+32
2016-05-07Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1).Subv1-0/+2
2016-05-07Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE region of the linear heap.Subv1-2/+5
2016-03-06Memory: Do correct Phys->Virt address translation for non-APP linheapYuri Kunde Schlesner1-0/+1
2015-08-16Kernel: Implement svcGetProcessInfo in a basic wayYuri Kunde Schlesner1-0/+2
2015-08-16Kernel: Add more infrastructure to support different memory layoutsYuri Kunde Schlesner1-1/+5
2015-08-16Process: Store kernel compatibility version during loadingYuri Kunde Schlesner1-0/+2
2015-08-16Kernel: Properly implement ControlMemory FREE and COMMITYuri Kunde Schlesner1-5/+26
2015-07-12Core: Fix applet includes using iwyu.Emmanuel Gil Peyrot1-0/+1
2015-07-12Core: Properly configure address space when loading a binaryYuri Kunde Schlesner1-7/+36
2015-06-28Core: Cleanup file_sys includes.Emmanuel Gil Peyrot1-1/+2
2015-05-15Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Subv1-0/+4
2015-05-12Core/Memory: Add TLS support for creating up to 300 threadsSubv1-0/+3
2015-05-12fixup!Subv1-6/+0
2015-05-11Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThreadSubv1-0/+11
2015-05-09Process: Rename StaticAddressMapping => AddressMappingYuri Kunde Schlesner1-2/+2
2015-05-09Process: Add more documentation to the class membersYuri Kunde Schlesner1-2/+16
2015-05-09Process: Use BitField to store process flagsYuri Kunde Schlesner1-6/+20
2015-05-09Process: Support parsing of exheader kernel capsYuri Kunde Schlesner1-1/+2
2015-05-09Kernel: Introduce skeleton Process class to hold process dataYuri Kunde Schlesner1-0/+61