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
/
thread.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Kernel: Start using boost::intrusive_ptr for lifetime management
Yuri Kunde Schlesner
2015-01-09
1
-33
/
+30
*
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
1
-213
/
+127
*
Kernel: Move Thread's definition to the header file
Yuri Kunde Schlesner
2015-01-09
1
-51
/
+9
*
Move ThreadContext to core/core.h and deal with the fallout
Yuri Kunde Schlesner
2015-01-09
1
-4
/
+5
*
SVC: Fixed SleepThread.
Subv
2015-01-08
1
-8
/
+32
*
Threads: Use a dummy idle thread when no other are ready.
Subv
2015-01-07
1
-1
/
+22
*
Common: Clean up ThreadQueueList
Yuri Kunde Schlesner
2015-01-07
1
-1
/
+1
*
Kernel: New handle manager
Yuri Kunde Schlesner
2014-12-28
1
-1
/
+2
*
Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants
Yuri Kunde Schlesner
2014-12-28
1
-2
/
+2
*
Rename ObjectPool to HandleTable
Yuri Kunde Schlesner
2014-12-28
1
-11
/
+11
*
Merge pull request #291 from purpasmart96/license
bunnei
2014-12-21
1
-1
/
+1
|
\
|
*
License change
purpasmart96
2014-12-20
1
-1
/
+1
*
|
Thread: Wait current thread on svc_SleepThread
bunnei
2014-12-20
1
-20
/
+33
*
|
Kernel: Implement support for current thread pseudo-handle
Yuri Kunde Schlesner
2014-12-20
1
-2
/
+1
|
/
*
Convert old logging calls to new logging macros
Yuri Kunde Schlesner
2014-12-13
1
-12
/
+12
*
Merge pull request #256 from Subv/mutex
bunnei
2014-12-10
1
-0
/
+4
|
\
|
*
Mutex: Release all held mutexes when a thread exits.
Subv
2014-12-07
1
-0
/
+4
*
|
Thread: Fixed to wait on address when in arbitration.
bunnei
2014-12-08
1
-10
/
+19
|
/
*
Threads: Remove a redundant function.
Subv
2014-12-04
1
-9
/
+1
*
Threads: Implemented a sequential thread id
Subv
2014-12-04
1
-3
/
+13
*
SVC: Implemented GetThreadId.
Subv
2014-12-04
1
-0
/
+16
*
Thread: Check that thread is actually in "wait state" when verifying wait.
bunnei
2014-11-26
1
-1
/
+1
*
Use pointers instead of passing handles around in some functions.
Yuri Kunde Schlesner
2014-11-24
1
-19
/
+15
*
Remove duplicated docs/update them for changed parameters.
Yuri Kunde Schlesner
2014-11-24
1
-5
/
+0
*
HLE: Revamp error handling throrough the HLE code
Yuri Kunde Schlesner
2014-11-24
1
-21
/
+30
*
Merge pull request #211 from linkmauve/master
bunnei
2014-11-19
1
-19
/
+19
|
\
|
*
Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ...
Emmanuel Gil Peyrot
2014-11-19
1
-19
/
+19
*
|
Add static to some variables
Lioncash
2014-11-18
1
-22
/
+22
|
/
*
Add `override` keyword through the code.
Yuri Kunde Schlesner
2014-10-26
1
-4
/
+4
*
core: Prune redundant includes
archshift
2014-09-08
1
-3
/
+0
*
Threading: Fix thread starting to execute first instruction correctly.
bunnei
2014-08-28
1
-0
/
+5
*
Core: Alter the kernel string functions to use std::string instead of const c...
Lioncash
2014-08-17
1
-10
/
+7
*
Thread: Added more descriptive comment to WaitCurrentThread.
bunnei
2014-08-06
1
-1
/
+5
*
Thread: Added functions to resume threads from address arbitration.
bunnei
2014-07-08
1
-0
/
+37
*
Thread: Renamed occurrences of "t" to "thread" to improve readability.
bunnei
2014-06-13
1
-48
/
+45
*
Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessar...
bunnei
2014-06-13
1
-9
/
+7
*
HLE: Removed usnused EatCycles function.
bunnei
2014-06-13
1
-9
/
+0
*
Thread: Moved position of * in arguments.
bunnei
2014-06-13
1
-2
/
+2
*
Thread: Updated VerifyWait to be more readable (but functionally the same).
bunnei
2014-06-13
1
-4
/
+3
*
HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
bunnei
2014-06-13
1
-7
/
+7
*
HLE: Updated various handle debug assertions to be more clear.
bunnei
2014-06-13
1
-2
/
+2
*
Kernel: Updated several member functions to be const
bunnei
2014-06-13
1
-3
/
+3
*
Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...
bunnei
2014-06-13
1
-1
/
+1
*
Kernel: Made SyncRequest not pure virtual, with a default implementation of e...
bunnei
2014-06-13
1
-10
/
+0
*
Kernel: Added real support for thread and event blocking
bunnei
2014-06-13
1
-33
/
+88
*
svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic...
bunnei
2014-06-01
1
-0
/
+45
*
kernel: changed main thread priority to default, updated Kernel::Reschedule t...
bunnei
2014-06-01
1
-3
/
+3
*
thread: updated Reschedule to sit at a synchronization barrier when no other ...
bunnei
2014-06-01
1
-0
/
+18
[next]