summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h (follow)
Commit message (Expand)AuthorAgeFilesLines
* core: hle: kernel: object: Implement Finalize() virtual method.bunnei2021-01-291-0/+2
* hle: kernel: KThread: Clean up thread priorities.bunnei2021-01-291-1/+6
* core: hle: kernel: Rename Thread to KThread.bunnei2021-01-291-5/+5
* core: hle: Integrate new KConditionVariable and KAddressArbiter implementations.bunnei2021-01-111-28/+22
* core: hle: kernel: Update KSynchronizationObject.bunnei2021-01-111-8/+6
* hle: kernel: Process: Various style fixes based on code review feedback.bunnei2020-12-061-2/+2
* hle: kernel: process: Add schedule count tracking, to be used for yield impl.bunnei2020-12-061-0/+13
* kernel/process: Move name and system context to the bottom of the member listLioncash2020-07-151-6/+6
* kernel: process: Updates for new VMM.bunnei2020-04-171-18/+27
* Kernel: Refactor synchronization to better match REFernando Sahmkow2020-02-111-4/+0
* Kernel: Change WaitObject to Synchronization object. In order to better reflect RE.Fernando Sahmkow2020-02-111-2/+2
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-251-10/+11
* Kernel: Optimize condition variable threads management.Fernando Sahmkow2019-11-211-1/+2
* Kernel: Correct behavior of Condition Variables to be more similar to real hardware.Fernando Sahmkow2019-11-211-0/+12
* Merge pull request #2687 from lioncash/tls-processbunnei2019-07-181-0/+11
|\
| * kernel/process: Allocate the process' TLS region during initializationLioncash2019-07-071-0/+8
| * kernel/process: Move main thread stack allocation to its own functionLioncash2019-07-071-0/+3
* | address review commentaryMichael Scire2019-07-071-4/+19
* | Implement MapPhysicalMemory/UnmapPhysicalMemoryMichael Scire2019-07-071-3/+8
|/
* kernel/process: Default initialize all member variablesLioncash2019-07-041-2/+2
* kernel/process: Decouple TLS handling from threadsLioncash2019-07-041-4/+4
* kernel: Differentiate kernel and user processes when picking IDZach Hilman2019-06-101-1/+7
* Merge pull request #2571 from lioncash/refZach Hilman2019-06-101-1/+1
|\
| * kernel/process: Make Create()'s name parameter be taken by valueLioncash2019-06-101-1/+1
* | kernel/svc: Implement TotalMemoryUsedWithoutMmHeap/TotalMemoryAvailableWithoutMmHeapLioncash2019-06-101-0/+11
|/
* kernel/process: Remove unused boost header includeLioncash2019-06-051-1/+0
* core/core: Move process execution start to System's Load()Lioncash2019-04-121-2/+5
* kernel: Make handle type declarations constexprLioncash2019-04-111-1/+1
* Merge pull request #2314 from lioncash/constbunnei2019-04-031-1/+1
|\
| * kernel/wait_object: Make ShouldWait() take thread members by pointer-to-constLioncash2019-04-021-1/+1
* | kernel/svc: Implement svcGetThreadListLioncash2019-04-021-0/+17
|/
* kernel/process: Report total physical memory used to svcGetInfoLioncash2019-03-291-0/+3
* kernel/process: Store the total size of the code memory loadedLioncash2019-03-291-0/+3
* kernel/process: Store the main thread stack size to a data memberLioncash2019-03-281-0/+3
* kernel/process: Make Run's stack size parameter a u64Lioncash2019-03-281-1/+1
* kernel/process: Remove unused AddressMapping structLioncash2019-03-241-8/+0
* Merge pull request #2234 from lioncash/mutexbunnei2019-03-221-0/+16
|\
| * core/hle/kernel: Make Mutex a per-process class.Lioncash2019-03-151-0/+16
* | kernel: Move CodeSet structure to its own source filesLioncash2019-03-201-41/+2
|/
* kernel/process: Remove use of global system accessorsLioncash2019-03-131-1/+5
* kernel: Make the address arbiter instance per-processLioncash2019-03-081-2/+20
* core/kernel: Remove unnecessary inclusionsLioncash2019-01-011-1/+1
* kernel/process: Rename GetAllowedProcessorMask() and GetAllowedThreadPriorityMask()Lioncash2018-12-311-3/+3
* Merge pull request #1956 from lioncash/process-threadSebastian Valle2018-12-311-5/+5
|\
| * kernel: Rename 'default' CPU core to 'ideal' coreLioncash2018-12-281-5/+5
* | kernel/process: Remove most allocation functions from Process' interfaceLioncash2018-12-281-8/+1
|/
* Merge pull request #1928 from lioncash/capsbunnei2018-12-271-45/+13
|\
| * kernel/process: Hook up the process capability parser to the process itselfLioncash2018-12-211-45/+13
* | kernel/kernel: Use correct initial PID for userland Process instancesLioncash2018-12-191-0/+12
* | kernel/process: Make process_id a 64-bit valueLioncash2018-12-191-3/+3
|/
* vm_manager: Amend MemoryState enum membersLioncash2018-12-121-2/+1
* kernel/process: Make Process a WaitObjectLioncash2018-12-051-2/+28
* kernel/svc: Implement the resource limit svcGetInfo optionLioncash2018-12-041-8/+1
* kernel/process: Move <random> include to the cpp fileLioncash2018-11-201-1/+0
* process: Make MirrorMemory take state to map new memory asZach Hilman2018-11-151-1/+2
* Merge pull request #1679 from DarkLordZach/deterministic-rng-2bunnei2018-11-141-0/+11
|\
| * svc: Use proper random entropy generation algorithmZach Hilman2018-11-131-0/+11
* | kernel/process: Migrate heap-related memory management out of the process class and into the vm managerLioncash2018-11-131-11/+0
|/
* svc: Implement svcGetInfo command 0xF0000002Lioncash2018-10-261-0/+13
* kernel/process: Make the handle table per-processLioncash2018-10-201-0/+14
* svc: Implement svcGetProcessInfoLioncash2018-10-131-3/+18
* kernel/process: Make CodeSet a regular non-inherited objectLioncash2018-10-121-23/+5
* kernel/process: Add a data member to determine if a process is 64-bit or not.Lioncash2018-09-301-0/+10
* kernel/process: Make data member variables privateLioncash2018-09-301-26/+71
* process/vm_manager: Amend API to allow reading parameters from NPDM metadataLioncash2018-09-241-0/+12
* svc: Move most process termination code to its own function within ProcessLioncash2018-09-211-5/+22
* thread/process: Move TLS slot marking/freeing to the process classLioncash2018-09-211-11/+17
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-2/+2
* kernel: Eliminate kernel global stateLioncash2018-08-291-13/+8
* kernel/process: Use std::array where applicableLioncash2018-08-031-1/+2
* kernel/process: Use accessors instead of class members for referencing segment arrayLioncash2018-08-031-12/+32
* core/memory: Get rid of 3DS leftoversLioncash2018-08-031-13/+4
* kernel: Move object class to its own source filesLioncash2018-08-021-1/+1
* core: Move process creation out of global state.bunnei2018-03-141-2/+1
* Kernel: Store the program id in the Process class instead of the CodeSet class.Subv2018-03-021-4/+5
* Added more svcGetInfo pairsDavid Marcec2018-01-161-0/+2
* Threads: Added enum values for the Switch's 4 cpu cores and implemented svcGetInfo(AllowedCpuIdBitmask)Subv2018-01-101-0/+4
* svc: Implement svcExitProcess.bunnei2018-01-011-2/+11
* svc: Implement svcUnmapMemory.bunnei2017-12-311-0/+3
* kernel: Various 64-bit fixes in memory/process/threadbunnei2017-12-291-3/+3
* process: Add method to mirror a memory region.bunnei2017-12-291-0/+2
* nso: Refactor and allocate .bss section.bunnei2017-09-301-4/+5
* process: Support loading multiple codesets.bunnei2017-09-301-1/+7
* Kernel: Map special regions according to ExHeaderYuri Kunde Schlesner2017-05-101-1/+1
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-3/+0
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-18/+32
* Merge pull request #1695 from Subv/tls_allocbunnei2016-05-131-2/+5
|\
| * Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE region of the linear heap.Subv2016-05-071-2/+5
* | Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1).Subv2016-05-071-0/+2
|/
* Memory: Do correct Phys->Virt address translation for non-APP linheapYuri Kunde Schlesner2016-03-061-0/+1
* Kernel: Implement svcGetProcessInfo in a basic wayYuri Kunde Schlesner2015-08-161-0/+2
* Kernel: Add more infrastructure to support different memory layoutsYuri Kunde Schlesner2015-08-161-1/+5
* Process: Store kernel compatibility version during loadingYuri Kunde Schlesner2015-08-161-0/+2
* Kernel: Properly implement ControlMemory FREE and COMMITYuri Kunde Schlesner2015-08-161-5/+26
* Core: Fix applet includes using iwyu.Emmanuel Gil Peyrot2015-07-121-0/+1
* Core: Properly configure address space when loading a binaryYuri Kunde Schlesner2015-07-121-7/+36
* Core: Cleanup file_sys includes.Emmanuel Gil Peyrot2015-06-281-1/+2
* Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Subv2015-05-151-0/+4
* Core/Memory: Add TLS support for creating up to 300 threadsSubv2015-05-121-0/+3
* fixup!Subv2015-05-121-6/+0
* Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThreadSubv2015-05-111-0/+11
* Process: Rename StaticAddressMapping => AddressMappingYuri Kunde Schlesner2015-05-091-2/+2
* Process: Add more documentation to the class membersYuri Kunde Schlesner2015-05-091-2/+16
* Process: Use BitField to store process flagsYuri Kunde Schlesner2015-05-091-6/+20
* Process: Support parsing of exheader kernel capsYuri Kunde Schlesner2015-05-091-1/+2
* Kernel: Introduce skeleton Process class to hold process dataYuri Kunde Schlesner2015-05-091-0/+61