summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* core/memory: Get rid of 3DS leftoversGravatar Lioncash2018-08-031-76/+2
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-021-4/+4
* general: Make formatting of logged hex values more straightforwardGravatar Lioncash2018-05-021-1/+1
* core: Replace usages of LOG_GENERIC with new fmt-capable equivalentsGravatar Lioncash2018-04-271-1/+1
* kernel: Migrate logging macros to fmt-compatible onesGravatar Lioncash2018-04-251-4/+4
* memory: Fix stack region.Gravatar bunnei2018-03-311-2/+3
* process: MirrorMemory should use MemoryState::Mapped.Gravatar bunnei2018-03-161-1/+1
* process: Unmap previously allocated heap.Gravatar bunnei2018-03-161-1/+3
* kernel: Move stack region outside of application heap.Gravatar bunnei2018-03-161-3/+2
* process: Fix stack memory state.Gravatar bunnei2018-03-161-2/+4
* MemoryState: Add additional memory states and improve naming.Gravatar bunnei2018-03-161-3/+3
* core: Move process creation out of global state.Gravatar bunnei2018-03-141-3/+2
* Kernel: Store the program id in the Process class instead of the CodeSet class.Gravatar Subv2018-03-011-5/+3
* svc: Implement svcExitProcess.Gravatar bunnei2018-01-011-5/+27
* svc: Implement svcUnmapMemory.Gravatar bunnei2017-12-311-0/+4
* kernel: Various 64-bit fixes in memory/process/threadGravatar bunnei2017-12-291-1/+1
* process: Add method to mirror a memory region.Gravatar bunnei2017-12-281-0/+25
* hle: Fix QueryMemory response for MemoryInfo.Gravatar bunnei2017-10-191-37/+5
* Merge remote-tracking branch 'upstream/master' into nxGravatar bunnei2017-10-091-1/+2
|\
| * Kernel/Thread: Allow specifying which process a thread belongs to when creati...Gravatar Subv2017-09-261-1/+1