index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
process.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
svc: Move most process termination code to its own function within Process
Lioncash
2018-09-21
1
-0
/
+29
*
thread/process: Move TLS slot marking/freeing to the process class
Lioncash
2018-09-21
1
-0
/
+58
*
kernel/thread: Use owner_process when setting the page table in SetupMainThread()
Lioncash
2018-09-21
1
-1
/
+1
*
Port #4182 from Citra: "Prefix all size_t with std::"
fearlessTobi
2018-09-15
1
-3
/
+3
*
kernel: Eliminate kernel global state
Lioncash
2018-08-29
1
-29
/
+11
*
kernel/process: Use accessors instead of class members for referencing segment array
Lioncash
2018-08-03
1
-3
/
+3
*
core/memory: Get rid of 3DS leftovers
Lioncash
2018-08-03
1
-76
/
+2
*
Rename logging macro back to LOG_*
James Rowe
2018-07-03
1
-4
/
+4
*
general: Make formatting of logged hex values more straightforward
Lioncash
2018-05-02
1
-1
/
+1
*
core: Replace usages of LOG_GENERIC with new fmt-capable equivalents
Lioncash
2018-04-27
1
-1
/
+1
*
kernel: Migrate logging macros to fmt-compatible ones
Lioncash
2018-04-26
1
-4
/
+4
*
memory: Fix stack region.
bunnei
2018-03-31
1
-2
/
+3
*
process: MirrorMemory should use MemoryState::Mapped.
bunnei
2018-03-17
1
-1
/
+1
*
process: Unmap previously allocated heap.
bunnei
2018-03-16
1
-1
/
+3
*
kernel: Move stack region outside of application heap.
bunnei
2018-03-16
1
-3
/
+2
*
process: Fix stack memory state.
bunnei
2018-03-16
1
-2
/
+4
*
MemoryState: Add additional memory states and improve naming.
bunnei
2018-03-16
1
-3
/
+3
*
core: Move process creation out of global state.
bunnei
2018-03-14
1
-3
/
+2
*
Kernel: Store the program id in the Process class instead of the CodeSet class.
Subv
2018-03-02
1
-5
/
+3
*
svc: Implement svcExitProcess.
bunnei
2018-01-01
1
-5
/
+27
*
svc: Implement svcUnmapMemory.
bunnei
2017-12-31
1
-0
/
+4
*
kernel: Various 64-bit fixes in memory/process/thread
bunnei
2017-12-29
1
-1
/
+1
*
process: Add method to mirror a memory region.
bunnei
2017-12-29
1
-0
/
+25
*
hle: Fix QueryMemory response for MemoryInfo.
bunnei
2017-10-20
1
-37
/
+5
*
Merge remote-tracking branch 'upstream/master' into nx
bunnei
2017-10-10
1
-1
/
+2
|
\
|
*
Kernel/Thread: Allow specifying which process a thread belongs to when creating it.
Subv
2017-09-27
1
-1
/
+1
*
|
loader: Various improvements for NSO/NRO loaders.
bunnei
2017-10-10
1
-3
/
+3
*
|
nso: Refactor and allocate .bss section.
bunnei
2017-09-30
1
-4
/
+5
*
|
process: Support loading multiple codesets.
bunnei
2017-09-30
1
-19
/
+20
|
/
*
Kernel: Add comment about the extended linear heap area
Yuri Kunde Schlesner
2017-06-19
1
-0
/
+2
*
Kernel: Centralize error definitions in errors.h
Yuri Kunde Schlesner
2017-05-25
1
-0
/
+1
*
Kernel: Map special regions according to ExHeader
Yuri Kunde Schlesner
2017-05-10
1
-4
/
+19
*
Use negative priorities to avoid special-casing the self-include
Yuri Kunde Schlesner
2016-09-21
1
-1
/
+1
*
Remove empty newlines in #include blocks.
Emmanuel Gil Peyrot
2016-09-21
1
-3
/
+1
*
Manually tweak source formatting and then re-run clang-format
Yuri Kunde Schlesner
2016-09-19
1
-8
/
+4
*
Sources: Run clang-format on everything.
Emmanuel Gil Peyrot
2016-09-18
1
-25
/
+40
*
Kernel/SVC: Fixed the register order for svcCreateMemoryBlock.
Subv
2016-05-13
1
-1
/
+1
*
Common: Remove Common::make_unique, use std::make_unique
MerryMage
2016-04-05
1
-1
/
+2
*
Memory: Do correct Phys->Virt address translation for non-APP linheap
Yuri Kunde Schlesner
2016-03-06
1
-2
/
+4
*
BitField: Make trivially copyable and remove assignment operator
MerryMage
2016-02-12
1
-1
/
+1
*
Kernel: Implement svcGetSystemInfo
Yuri Kunde Schlesner
2015-12-01
1
-0
/
+6
*
Kernel: Fix wrong linear heap base on titles using newer kernels
Yuri Kunde Schlesner
2015-08-28
1
-1
/
+1
*
Kernel: Fix assertion failure when ControlMemory is called with size=0
Yuri Kunde Schlesner
2015-08-27
1
-0
/
+8
*
Kernel: Implement svcGetProcessInfo in a basic way
Yuri Kunde Schlesner
2015-08-16
1
-0
/
+10
*
Kernel: Add more infrastructure to support different memory layouts
Yuri Kunde Schlesner
2015-08-16
1
-16
/
+28
*
Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h}
Yuri Kunde Schlesner
2015-08-16
1
-1
/
+1
*
Process: Store kernel compatibility version during loading
Yuri Kunde Schlesner
2015-08-16
1
-3
/
+5
*
Kernel: Properly implement ControlMemory FREE and COMMIT
Yuri Kunde Schlesner
2015-08-16
1
-5
/
+115
*
VMManager: Make LogLayout log level configurable as a parameter
Yuri Kunde Schlesner
2015-08-16
1
-1
/
+1
*
Core: Properly configure address space when loading a binary
Yuri Kunde Schlesner
2015-07-12
1
-6
/
+32
*
Merge pull request #772 from lioncash/warn
bunnei
2015-05-18
1
-3
/
+3
|
\
|
*
process: Get rid of warnings
Lioncash
2015-05-14
1
-3
/
+3
*
|
Core/ResourceLimits: Implemented the basic structure of ResourceLimits.
Subv
2015-05-15
1
-0
/
+1
*
|
Memmap: Re-organize memory function in two files
Yuri Kunde Schlesner
2015-05-15
1
-1
/
+1
|
/
*
Merge pull request #750 from Subv/process_svc
Yuri Kunde Schlesner
2015-05-12
1
-0
/
+2
|
\
|
*
Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread
Subv
2015-05-11
1
-0
/
+2
*
|
Thread: Correctly set main thread initial stack position
Yuri Kunde Schlesner
2015-05-11
1
-1
/
+1
|
/
*
Common: Remove the BIT macro
Yuri Kunde Schlesner
2015-05-09
1
-2
/
+2
*
Kernel: Remove unused g_main_thread variable
Yuri Kunde Schlesner
2015-05-09
1
-1
/
+1
*
Process: Rename StaticAddressMapping => AddressMapping
Yuri Kunde Schlesner
2015-05-09
1
-3
/
+3
*
Process: Use BitField to store process flags
Yuri Kunde Schlesner
2015-05-09
1
-10
/
+4
*
Process: Support parsing of exheader kernel caps
Yuri Kunde Schlesner
2015-05-09
1
-3
/
+70
*
Kernel: Introduce skeleton Process class to hold process data
Yuri Kunde Schlesner
2015-05-09
1
-0
/
+35