index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
|
Merge pull request #2410 from Subv/sleepthread
bunnei
2017-01-06
3
-0
/
+14
|
\
\
\
|
*
|
|
Kernel: Don't attempt to yield execution in SleepThread(0) if there are no av...
Subv
2017-01-05
3
-0
/
+14
*
|
|
|
Merge pull request #2396 from Subv/sema_acquire
bunnei
2017-01-06
1
-1
/
+2
|
\
\
\
\
|
*
|
|
|
Kernel/Semaphore: Fixed a regression in semaphore waits.
Subv
2017-01-05
1
-1
/
+2
|
|
/
/
/
*
|
|
|
Kernel: Fix SharedMemory objects always returning error when addr = 0 (#2404)
Hyper
2017-01-06
1
-1
/
+5
*
|
|
|
Merge pull request #2408 from Subv/priority_boosting
bunnei
2017-01-06
1
-27
/
+0
|
\
\
\
\
|
*
|
|
|
Kernel: Removed the priority boost code for starved threads.
Subv
2017-01-05
1
-27
/
+0
|
|
/
/
/
*
/
/
/
Kernel: Remove some unused functions.
Subv
2017-01-05
2
-32
/
+0
|
/
/
/
*
|
|
Merge pull request #2393 from Subv/synch
Sebastian Valle
2017-01-05
17
-159
/
+221
|
\
\
\
|
*
|
|
Kernel: Add some asserts to enforce the invariants in the scheduler.
Subv
2017-01-05
2
-2
/
+13
|
*
|
|
Kernel: Remove a thread from all of its waiting objects' waiting_threads list...
Subv
2017-01-05
1
-18
/
+4
|
*
|
|
Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all th...
Subv
2017-01-05
4
-21
/
+22
|
*
|
|
Kernel: Use different thread statuses when a thread calls WaitSynchronization...
Subv
2017-01-04
3
-16
/
+20
|
*
|
|
Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...
Subv
2017-01-04
5
-42
/
+60
|
*
|
|
Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.
Subv
2017-01-04
5
-24
/
+42
|
*
|
|
Kernel/Mutex: Implemented priority inheritance.
Subv
2017-01-04
5
-31
/
+51
|
*
|
|
Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.
Subv
2017-01-04
17
-68
/
+56
|
*
|
|
Kernel/Synch: Do not attempt a reschedule on every syscall.
Subv
2017-01-04
2
-2
/
+18
|
|
/
/
*
|
|
Fix some warnings (#2399)
Jonathan Hao
2017-01-04
4
-8
/
+6
*
|
|
Service/NFC: stub GetTagInRangeEvent
mailwl
2016-12-30
5
-0
/
+42
|
/
/
*
|
Merge pull request #2240 from wwylele/auto-region
bunnei
2016-12-29
2
-2
/
+62
|
\
\
|
*
|
Config: auto-select region and language
wwylele
2016-12-07
2
-2
/
+62
*
|
|
Core: remove unused hle.cpp
wwylele
2016-12-27
1
-58
/
+0
|
|
/
|
/
|
*
|
core: Move emu_window and key_map into core
MerryMage
2016-12-23
1
-1
/
+1
*
|
Service/NWM: add nwm services
mailwl
2016-12-22
17
-8
/
+301
*
|
Merge pull request #2343 from bunnei/core-cleanup
bunnei
2016-12-22
13
-135
/
+108
|
\
\
|
*
|
ThreadContext: Move from "core" to "arm_interface".
bunnei
2016-12-22
2
-4
/
+5
|
*
|
core: Replace "AppCore" nomenclature with just "CPU".
bunnei
2016-12-22
4
-44
/
+43
|
*
|
Address clang-format issues.
bunnei
2016-12-21
2
-11
/
+12
|
*
|
core: Remove HLE module, consolidate code & various cleanups.
bunnei
2016-12-21
12
-82
/
+53
|
*
|
core: Consolidate core and system state, remove system module & cleanups.
bunnei
2016-12-21
5
-45
/
+45
*
|
|
Merge pull request #2285 from mailwl/csnd-format
bunnei
2016-12-22
2
-49
/
+92
|
\
\
\
|
|
/
/
|
/
|
|
|
*
|
csnd:SND reformat source code
mailwl
2016-12-12
2
-49
/
+92
*
|
|
Thread: remove the thread from the thread list when exiting
wwylele
2016-12-17
3
-3
/
+15
*
|
|
Kernel: remove object's waiting thread if it is dead
wwylele
2016-12-16
1
-1
/
+2
*
|
|
Merge pull request #2260 from Subv/scheduling
bunnei
2016-12-16
7
-195
/
+209
|
\
\
\
|
*
|
|
Fixed the codestyle to match our clang-format rules.
Subv
2016-12-14
3
-27
/
+39
|
*
|
|
Properly remove a thread from its wait_objects' waitlist when it is awoken by...
Subv
2016-12-10
3
-2
/
+11
|
*
|
|
WaitSynch: Removed unused variables and reduced SharedPtr copies.
Subv
2016-12-09
4
-73
/
+56
|
*
|
|
Use boost remove_erase_if instead of the erase-remove idiom
Subv
2016-12-06
1
-2
/
+3
|
*
|
|
Improved the algorithm for GetHighestPriorityReadyThread.
Subv
2016-12-06
1
-14
/
+13
|
*
|
|
Threading: Added some utility functions and const correctness.
Subv
2016-12-04
3
-15
/
+35
|
*
|
|
Threading: Reworked the way our scheduler works.
Subv
2016-12-03
7
-189
/
+179
*
|
|
|
Merge pull request #2328 from wwylele/fix-trace
Yuri Kunde Schlesner
2016-12-15
1
-11
/
+9
|
\
\
\
\
|
*
|
|
|
FS: fix debug build from #2249
wwylele
2016-12-16
1
-11
/
+9
*
|
|
|
|
Merge pull request #2320 from mailwl/cecd-update
Yuri Kunde Schlesner
2016-12-15
7
-13
/
+79
|
\
\
\
\
\
|
*
|
|
|
|
Service/CECD: Add cecd:ndm service
mailwl
2016-12-15
7
-13
/
+79
*
|
|
|
|
|
Merge pull request #2331 from lioncash/trunc
bunnei
2016-12-15
1
-1
/
+2
|
\
\
\
\
\
\
|
*
|
|
|
|
|
hid: Get rid of a double -> float truncation warning
Lioncash
2016-12-15
1
-1
/
+2
|
|
|
/
/
/
/
|
|
/
|
|
|
|
*
|
|
|
|
|
Merge pull request #2330 from lioncash/pragma
Sebastian Valle
2016-12-15
2
-0
/
+4
|
\
\
\
\
\
\
[prev]
[next]