index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
hle: kernel: Migrate KProcess to KAutoObject.
bunnei
2021-05-05
11
-47
/
+68
*
hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.
bunnei
2021-05-05
5
-17
/
+22
*
hle: kernel: Migrate more of KThread to KAutoObject.
bunnei
2021-05-05
16
-289
/
+442
*
hle: kernel: svc: Migrate GetThreadPriority, StartThread, and ExitThread.
bunnei
2021-05-05
1
-21
/
+12
*
hle: kernel: svc: Migrate CreateThread.
bunnei
2021-05-05
1
-14
/
+21
*
hle: kernel: Migrate idle threads.
bunnei
2021-05-05
2
-13
/
+9
*
hle: kernel: Migrate KThread to KAutoObject.
bunnei
2021-05-05
2
-109
/
+91
*
hle: kernel: Add initial impl. of slab setup.
bunnei
2021-05-05
2
-0
/
+225
*
hle: kernel: Refactor out various KThread std::shared_ptr usage.
bunnei
2021-05-05
9
-54
/
+26
*
hle: kernel: Add initial impl. of KLinkedList.
bunnei
2021-05-05
1
-0
/
+233
*
hle: kernel: Add initial impl. of KSlabAllocated.
bunnei
2021-05-05
1
-0
/
+152
*
hle: kernel: Add initial impl. of KAutoObjectWithListContainer.
bunnei
2021-05-05
2
-0
/
+107
*
hle: kernel: Add initial impl. of KAutoObject.
bunnei
2021-05-05
2
-0
/
+304
*
hid: Implement SevenSixAxis and ConsoleSixAxisSensor
german77
2021-04-23
2
-0
/
+7
*
hle_ipc: Add helper functions to get copy/move handles
Morph
2021-04-15
2
-2
/
+16
*
Merge pull request #6196 from bunnei/asserts-setting
bunnei
2021-04-14
1
-1
/
+1
|
\
|
*
common: Move settings to common from core.
bunnei
2021-04-14
1
-1
/
+1
*
|
k_resource_limit: Minor cleanup of member variables/headers
ameerj
2021-04-14
4
-21
/
+13
*
|
Merge pull request #6185 from ameerj/process-reslimit
bunnei
2021-04-13
2
-38
/
+27
|
\
\
|
|
/
|
/
|
|
*
kernel/process: Replace process resource limit instance with the kernel's res...
ameerj
2021-04-12
2
-38
/
+27
*
|
k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()
Lioncash
2021-04-12
1
-1
/
+1
|
/
*
Merge pull request #6099 from bunnei/derive-mem
bunnei
2021-04-10
23
-172
/
+2087
|
\
|
*
hle: kernel: Breakup InitializeMemoryLayout.
bunnei
2021-03-23
1
-3
/
+7
|
*
hle: kernel: k_memory_region_type: Minor code cleanup.
bunnei
2021-03-23
1
-13
/
+12
|
*
hle: kernel: k_memory_region: Minor code cleanup.
bunnei
2021-03-23
1
-7
/
+5
|
*
hle: kernel: k_memory_layout: Use pair instead of tuple.
bunnei
2021-03-23
1
-2
/
+4
|
*
hle: kernel: k_system_control: Remove unnecessary inline.
bunnei
2021-03-23
1
-4
/
+4
|
*
common: common_sizes: Move sizes to the Common namespace.
bunnei
2021-03-23
4
-45
/
+46
|
*
hle: kernel: Merge KMemoryRegionAttr and KMemoryRegionType.
bunnei
2021-03-21
2
-11
/
+9
|
*
hle: kernel: Remove unused variable.
bunnei
2021-03-21
1
-1
/
+0
|
*
hle: kernel: k_memory_region_type: Remove extra ".
bunnei
2021-03-21
1
-1
/
+1
|
*
hle: kernel: k_memory_layout: Move KMemoryRegionAllocator out of global.
bunnei
2021-03-21
3
-35
/
+47
|
*
hle: kernel: k_memory_layout: Derive memory regions based on board layout.
bunnei
2021-03-21
5
-56
/
+1031
|
*
common: common_sizes: Move Invalid to Size_* prefix and add missing values.
bunnei
2021-03-21
1
-14
/
+14
|
*
hle: kernel: k_memory_region: Refactor to simplify code.
bunnei
2021-03-21
2
-83
/
+89
|
*
hle: kernel: board: k_system_control: Extend to include memory region sizes.
bunnei
2021-03-21
2
-1
/
+125
|
*
hle: kernel: board: Add secure_monitor module.
bunnei
2021-03-21
1
-0
/
+26
|
*
common: Move common sizes to their own header for code reuse.
bunnei
2021-03-21
1
-13
/
+1
|
*
hle: kernel: k_address_space_info: Cleanup.
bunnei
2021-03-21
1
-9
/
+9
|
*
hle: kernel: Add k_trace module.
bunnei
2021-03-21
1
-0
/
+12
|
*
hle: kernel: KSystemControl: Update to reflect board-specific behavior.
bunnei
2021-03-21
3
-9
/
+39
|
*
hle: kernel: KMemoryManager: Add CalculateManagementOverheadSize.
bunnei
2021-03-21
2
-0
/
+26
|
*
hle: kernel: KMemoryManager: Add aliases.
bunnei
2021-03-21
1
-0
/
+4
|
*
hle: kernel: Add architecture and board specific memory regions.
bunnei
2021-03-21
2
-0
/
+72
|
*
hle: kernel: KMemoryRegion: Derive region values.
bunnei
2021-03-21
1
-0
/
+327
|
*
hle: kernel: Migrate some code from Common::SpinLock to KSpinLock.
bunnei
2021-03-21
5
-25
/
+25
|
*
hle: kernel: Add initial KMemoryRegionType module.
bunnei
2021-03-21
2
-18
/
+40
|
*
hle: kernel: Move KMemoryRegion to its own module and update.
bunnei
2021-03-21
3
-31
/
+321
*
|
Merge pull request #6156 from lioncash/lock-discard
bunnei
2021-04-09
3
-9
/
+12
|
\
\
|
*
|
Amend bizarre clang-format suggestions
Lioncash
2021-04-07
3
-5
/
+5
[next]