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
*
Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup.
bunnei
2015-01-21
2
-22
/
+42
*
Thread: Use std::find in CheckWait_WaitObject.
bunnei
2015-01-21
1
-4
/
+5
*
Mutex: Cleanup and remove redundant code.
bunnei
2015-01-21
3
-47
/
+29
*
Kernel: Renamed some functions for clarity.
bunnei
2015-01-21
7
-10
/
+10
*
Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.
bunnei
2015-01-21
8
-64
/
+39
*
WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...
bunnei
2015-01-21
8
-21
/
+20
*
Event: Fix implementation of "non-sticky" events.
bunnei
2015-01-21
1
-0
/
+4
*
Session: Change to a WaitObject.
bunnei
2015-01-21
3
-2
/
+9
*
Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs.
bunnei
2015-01-21
1
-1
/
+1
*
Mutex: Fix a bug where the thread should not wait if it already has the mutex.
bunnei
2015-01-21
1
-1
/
+4
*
Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObj...
bunnei
2015-01-21
3
-18
/
+57
*
AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that mad...
bunnei
2015-01-21
4
-35
/
+42
*
Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.
bunnei
2015-01-21
8
-112
/
+43
*
WaitSynchronizationN: Refactor to fix several bugs
bunnei
2015-01-21
7
-54
/
+49
*
Kernel: Separate WaitSynchronization into Wait and Acquire methods.
bunnei
2015-01-21
7
-14
/
+54
*
WaitSynchronizationN: Implement return values
bunnei
2015-01-21
9
-56
/
+139
*
Event: Fixed some bugs and cleanup (Subv)
bunnei
2015-01-21
2
-54
/
+13
*
Thread: Keep track of multiple wait objects.
bunnei
2015-01-21
3
-16
/
+30
*
Event: Get rid of permanent_lock hack.
bunnei
2015-01-21
2
-36
/
+8
*
WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup.
bunnei
2015-01-21
2
-4
/
+17
*
Kernel: Added WaitObject and changed "waitable" objects inherit from it.
bunnei
2015-01-21
8
-71
/
+73
*
core: Fix a few docstrings
Lioncash
2015-01-20
2
-2
/
+2
*
AddrArbiter: Implement arbitration types 3 and 4.
Subv
2015-01-13
2
-3
/
+20
*
Merge pull request #466 from Subv/wake
bunnei
2015-01-11
1
-0
/
+3
|
\
|
*
Thread: Prevent waking a thread multiple times.
Subv
2015-01-11
1
-0
/
+3
*
|
Kernel: Start using boost::intrusive_ptr for lifetime management
Yuri Kunde Schlesner
2015-01-09
10
-76
/
+75
*
|
Kernel: Don't re-assign object's handle when duplicating one
Yuri Kunde Schlesner
2015-01-09
2
-2
/
+3
|
/
*
Thread: Fix nullptr access in a logging function
Yuri Kunde Schlesner
2015-01-09
1
-1
/
+2
*
Thread: Rename thread_queue => thread_list
Yuri Kunde Schlesner
2015-01-09
1
-6
/
+6
*
Thread: Reduce use of Handles and move some funcs to inside the class.
Yuri Kunde Schlesner
2015-01-09
9
-281
/
+190
*
Kernel: Move Thread's definition to the header file
Yuri Kunde Schlesner
2015-01-09
3
-53
/
+67
*
Move ThreadContext to core/core.h and deal with the fallout
Yuri Kunde Schlesner
2015-01-09
2
-4
/
+6
*
Merge pull request #255 from Subv/cbranch_3
bunnei
2015-01-08
5
-1
/
+194
|
\
|
*
SVC: Implemented the Timer service calls.
Subv
2015-01-08
5
-1
/
+194
*
|
SVC: Fixed SleepThread.
Subv
2015-01-08
2
-8
/
+39
*
|
Threads: Use a dummy idle thread when no other are ready.
Subv
2015-01-07
3
-1
/
+35
*
|
Common: Clean up ThreadQueueList
Yuri Kunde Schlesner
2015-01-07
1
-1
/
+1
|
/
*
Merge pull request #407 from Subv/arbiter
bunnei
2015-01-05
1
-0
/
+11
|
\
|
*
AddressArbiter: Ported arbitration type 2 from 3dmoo.
Subv
2015-01-03
1
-0
/
+11
*
|
Mutex: Add the calling thread to the waiting list when needed
Subv
2015-01-04
1
-2
/
+2
|
/
*
Kernel: New handle manager
Yuri Kunde Schlesner
2014-12-28
9
-142
/
+189
*
Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants
Yuri Kunde Schlesner
2014-12-28
8
-15
/
+15
*
Rename ObjectPool to HandleTable
Yuri Kunde Schlesner
2014-12-28
8
-41
/
+41
*
Merge pull request #291 from purpasmart96/license
bunnei
2014-12-21
15
-16
/
+16
|
\
|
*
License change
purpasmart96
2014-12-20
15
-16
/
+16
*
|
Thread: Wait current thread on svc_SleepThread
bunnei
2014-12-20
2
-21
/
+33
*
|
Merge pull request #316 from yuriks/thread-handle
bunnei
2014-12-20
3
-2
/
+16
|
\
\
|
*
|
Kernel: Implement support for current thread pseudo-handle
Yuri Kunde Schlesner
2014-12-20
3
-2
/
+16
*
|
|
Clean up some warnings
Chin
2014-12-20
2
-5
/
+5
|
|
/
|
/
|
*
|
Merge pull request #185 from purpasmart96/mem_perm
bunnei
2014-12-17
1
-5
/
+9
|
\
\
[next]