summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2314 from lioncash/constGravatar bunnei2019-04-031-1/+1
|\
| * kernel/wait_object: Make ShouldWait() take thread members by pointer-to-constGravatar Lioncash2019-04-011-1/+1
* | kernel/svc: Implement svcGetThreadListGravatar Lioncash2019-04-021-0/+8
* | process: Fix up compilationGravatar ReinUsesLisp2019-04-021-1/+1
* | Merge pull request #2281 from lioncash/memoryGravatar bunnei2019-04-011-2/+4
|\ \ | |/ |/|
| * kernel/codeset: Make CodeSet's memory data member a regular std::vectorGravatar Lioncash2019-03-221-2/+4
* | kernel/process: Report total physical memory used to svcGetInfoGravatar Lioncash2019-03-281-0/+4
* | kernel/process: Store the total size of the code memory loadedGravatar Lioncash2019-03-281-0/+2
* | kernel/process: Store the main thread stack size to a data memberGravatar Lioncash2019-03-281-4/+4
* | kernel/process: Make Run's stack size parameter a u64Gravatar Lioncash2019-03-281-1/+1
* | kernel/process: Ensure that given stack size is always page-alignedGravatar Lioncash2019-03-281-0/+4
|/
* Merge pull request #2234 from lioncash/mutexGravatar bunnei2019-03-211-1/+2
|\
| * core/hle/kernel: Make Mutex a per-process class.Gravatar Lioncash2019-03-141-1/+2
* | kernel/vm_manager: Rename CodeStatic/CodeMutable to Code and CodeData respect...Gravatar Lioncash2019-03-211-3/+3
* | kernel/process: Make MapSegment lambda reference parameter constGravatar Lioncash2019-03-201-1/+1
* | kernel: Move CodeSet structure to its own source filesGravatar Lioncash2019-03-201-3/+1
* | core: Move PageTable struct into Common.Gravatar bunnei2019-03-161-1/+1
|/
* kernel/process: Remove use of global system accessorsGravatar Lioncash2019-03-121-7/+4
* kernel: Make the address arbiter instance per-processGravatar Lioncash2019-03-071-4/+5
* kernel/handle_table: Allow process capabilities to limit the handle table sizeGravatar Lioncash2019-02-251-1/+7
* Merge pull request #1956 from lioncash/process-threadGravatar Sebastian Valle2018-12-301-2/+31
|\
| * kernel/process: Start the main thread using the specified ideal coreGravatar Lioncash2018-12-271-2/+2
| * kernel: Rename 'default' CPU core to 'ideal' coreGravatar Lioncash2018-12-271-1/+1
| * kernel/thread: Move process thread initialization into process.cppGravatar Lioncash2018-12-271-1/+30
* | kernel/process: Remove most allocation functions from Process' interfaceGravatar Lioncash2018-12-271-16/+0
|/
* kernel/process: Hook up the process capability parser to the process itselfGravatar Lioncash2018-12-211-75/+5
* vm_manager: Amend MemoryState enum membersGravatar Lioncash2018-12-121-1/+1
* Merge pull request #1872 from lioncash/proc-infoGravatar Hexagon122018-12-101-0/+1
|\
| * kernel/process: Set ideal core from metadataGravatar Lioncash2018-12-051-0/+1
* | kernel/process: Make Process a WaitObjectGravatar Lioncash2018-12-041-3/+39
|/
* kernel/svc: Implement the resource limit svcGetInfo optionGravatar Lioncash2018-12-041-0/+4
* kernel/process: Move <random> include to the cpp fileGravatar Lioncash2018-11-201-0/+1
* kernel/resource_limit: Clean up interfaceGravatar Lioncash2018-11-191-1/+1
* ldr_ro: Add error check for memory allocation failureGravatar Zach Hilman2018-11-171-2/+2
* Merge pull request #1679 from DarkLordZach/deterministic-rng-2Gravatar bunnei2018-11-141-0/+6
|\
| * svc: Use proper random entropy generation algorithmGravatar Zach Hilman2018-11-131-0/+6
* | kernel/process: Migrate heap-related memory management out of the process cla...Gravatar Lioncash2018-11-131-73/+3
|/
* process: LoadModule should clear JIT instruction cache.Gravatar bunnei2018-10-251-0/+6
* core_cpu: Make Cpu scheduler instances unique_ptrs instead of shared_ptrsGravatar Lioncash2018-10-151-5/+5
* kernel/process: Make CodeSet a regular non-inherited objectGravatar Lioncash2018-10-121-15/+9
* kernel/thread: Make all instance variables privateGravatar Lioncash2018-10-041-3/+3
* kernel/process: Add a data member to determine if a process is 64-bit or not.Gravatar Lioncash2018-09-301-0/+1
* memory: Dehardcode the use of fixed memory range constantsGravatar Lioncash2018-09-241-10/+10
* process/vm_manager: Amend API to allow reading parameters from NPDM metadataGravatar Lioncash2018-09-241-0/+8
* svc: Move most process termination code to its own function within ProcessGravatar Lioncash2018-09-211-0/+29
* thread/process: Move TLS slot marking/freeing to the process classGravatar Lioncash2018-09-211-0/+58
* kernel/thread: Use owner_process when setting the page table in SetupMainThre...Gravatar Lioncash2018-09-201-1/+1
* Port #4182 from Citra: "Prefix all size_t with std::"Gravatar fearlessTobi2018-09-151-3/+3
* kernel: Eliminate kernel global stateGravatar Lioncash2018-08-281-29/+11
* kernel/process: Use accessors instead of class members for referencing segmen...Gravatar Lioncash2018-08-031-3/+3