summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Rename logging macro back to LOG_*James Rowe2018-07-031-4/+4
* general: Make formatting of logged hex values more straightforwardLioncash2018-05-021-1/+1
* core: Replace usages of LOG_GENERIC with new fmt-capable equivalentsLioncash2018-04-271-1/+1
* kernel: Migrate logging macros to fmt-compatible onesLioncash2018-04-261-4/+4
* memory: Fix stack region.bunnei2018-03-311-2/+3
* process: MirrorMemory should use MemoryState::Mapped.bunnei2018-03-171-1/+1
* process: Unmap previously allocated heap.bunnei2018-03-161-1/+3
* kernel: Move stack region outside of application heap.bunnei2018-03-161-3/+2
* process: Fix stack memory state.bunnei2018-03-161-2/+4
* MemoryState: Add additional memory states and improve naming.bunnei2018-03-161-3/+3
* core: Move process creation out of global state.bunnei2018-03-141-3/+2
* Kernel: Store the program id in the Process class instead of the CodeSet class.Subv2018-03-021-5/+3
* svc: Implement svcExitProcess.bunnei2018-01-011-5/+27
* svc: Implement svcUnmapMemory.bunnei2017-12-311-0/+4
* kernel: Various 64-bit fixes in memory/process/threadbunnei2017-12-291-1/+1
* process: Add method to mirror a memory region.bunnei2017-12-291-0/+25
* hle: Fix QueryMemory response for MemoryInfo.bunnei2017-10-201-37/+5
* Merge remote-tracking branch 'upstream/master' into nxbunnei2017-10-101-1/+2
|\
| * Kernel/Thread: Allow specifying which process a thread belongs to when creating it.Subv2017-09-271-1/+1
* | loader: Various improvements for NSO/NRO loaders.bunnei2017-10-101-3/+3
* | nso: Refactor and allocate .bss section.bunnei2017-09-301-4/+5
* | process: Support loading multiple codesets.bunnei2017-09-301-19/+20
|/
* Kernel: Add comment about the extended linear heap areaYuri Kunde Schlesner2017-06-191-0/+2
* Kernel: Centralize error definitions in errors.hYuri Kunde Schlesner2017-05-251-0/+1
* Kernel: Map special regions according to ExHeaderYuri Kunde Schlesner2017-05-101-4/+19
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-3/+1
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-191-8/+4
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-25/+40
* Kernel/SVC: Fixed the register order for svcCreateMemoryBlock.Subv2016-05-131-1/+1
* Common: Remove Common::make_unique, use std::make_uniqueMerryMage2016-04-051-1/+2
* Memory: Do correct Phys->Virt address translation for non-APP linheapYuri Kunde Schlesner2016-03-061-2/+4
* BitField: Make trivially copyable and remove assignment operatorMerryMage2016-02-121-1/+1
* Kernel: Implement svcGetSystemInfoYuri Kunde Schlesner2015-12-011-0/+6
* Kernel: Fix wrong linear heap base on titles using newer kernelsYuri Kunde Schlesner2015-08-281-1/+1
* Kernel: Fix assertion failure when ControlMemory is called with size=0Yuri Kunde Schlesner2015-08-271-0/+8
* Kernel: Implement svcGetProcessInfo in a basic wayYuri Kunde Schlesner2015-08-161-0/+10
* Kernel: Add more infrastructure to support different memory layoutsYuri Kunde Schlesner2015-08-161-16/+28
* Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h}Yuri Kunde Schlesner2015-08-161-1/+1
* Process: Store kernel compatibility version during loadingYuri Kunde Schlesner2015-08-161-3/+5
* Kernel: Properly implement ControlMemory FREE and COMMITYuri Kunde Schlesner2015-08-161-5/+115
* VMManager: Make LogLayout log level configurable as a parameterYuri Kunde Schlesner2015-08-161-1/+1
* Core: Properly configure address space when loading a binaryYuri Kunde Schlesner2015-07-121-6/+32
* Merge pull request #772 from lioncash/warnbunnei2015-05-181-3/+3
|\
| * process: Get rid of warningsLioncash2015-05-141-3/+3
* | Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Subv2015-05-151-0/+1
* | Memmap: Re-organize memory function in two filesYuri Kunde Schlesner2015-05-151-1/+1
|/
* Merge pull request #750 from Subv/process_svcYuri Kunde Schlesner2015-05-121-0/+2
|\
| * Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThreadSubv2015-05-111-0/+2
* | Thread: Correctly set main thread initial stack positionYuri Kunde Schlesner2015-05-111-1/+1
|/
* Common: Remove the BIT macroYuri Kunde Schlesner2015-05-091-2/+2
* Kernel: Remove unused g_main_thread variableYuri Kunde Schlesner2015-05-091-1/+1
* Process: Rename StaticAddressMapping => AddressMappingYuri Kunde Schlesner2015-05-091-3/+3
* Process: Use BitField to store process flagsYuri Kunde Schlesner2015-05-091-10/+4
* Process: Support parsing of exheader kernel capsYuri Kunde Schlesner2015-05-091-3/+70
* Kernel: Introduce skeleton Process class to hold process dataYuri Kunde Schlesner2015-05-091-0/+35