summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-091-33/+30
* Thread: Fix nullptr access in a logging functionGravatar Yuri Kunde Schlesner2015-01-091-1/+2
* Thread: Rename thread_queue => thread_listGravatar Yuri Kunde Schlesner2015-01-091-6/+6
* Thread: Reduce use of Handles and move some funcs to inside the class.Gravatar Yuri Kunde Schlesner2015-01-091-213/+127
* Kernel: Move Thread's definition to the header fileGravatar Yuri Kunde Schlesner2015-01-091-51/+9
* Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-091-4/+5
* SVC: Fixed SleepThread.Gravatar Subv2015-01-081-8/+32
* Threads: Use a dummy idle thread when no other are ready.Gravatar Subv2015-01-071-1/+22
* Common: Clean up ThreadQueueListGravatar Yuri Kunde Schlesner2015-01-071-1/+1
* Kernel: New handle managerGravatar Yuri Kunde Schlesner2014-12-281-1/+2
* Kernel: Replace GetStaticHandleType by HANDLE_TYPE constantsGravatar Yuri Kunde Schlesner2014-12-281-2/+2
* Rename ObjectPool to HandleTableGravatar Yuri Kunde Schlesner2014-12-281-11/+11
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-211-1/+1
|\
| * License changeGravatar purpasmart962014-12-201-1/+1
* | Thread: Wait current thread on svc_SleepThreadGravatar bunnei2014-12-201-20/+33
* | Kernel: Implement support for current thread pseudo-handleGravatar Yuri Kunde Schlesner2014-12-201-2/+1
|/
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-131-12/+12
* Merge pull request #256 from Subv/mutexGravatar bunnei2014-12-101-0/+4
|\
| * Mutex: Release all held mutexes when a thread exits.Gravatar Subv2014-12-071-0/+4
* | Thread: Fixed to wait on address when in arbitration.Gravatar bunnei2014-12-081-10/+19
|/
* Threads: Remove a redundant function.Gravatar Subv2014-12-041-9/+1
* Threads: Implemented a sequential thread idGravatar Subv2014-12-041-3/+13
* SVC: Implemented GetThreadId.Gravatar Subv2014-12-041-0/+16
* Thread: Check that thread is actually in "wait state" when verifying wait.Gravatar bunnei2014-11-261-1/+1
* Use pointers instead of passing handles around in some functions.Gravatar Yuri Kunde Schlesner2014-11-241-19/+15
* Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-241-5/+0
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-241-21/+30
* Merge pull request #211 from linkmauve/masterGravatar bunnei2014-11-191-19/+19
|\
| * Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ...Gravatar Emmanuel Gil Peyrot2014-11-191-19/+19
* | Add static to some variablesGravatar Lioncash2014-11-181-22/+22
|/
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-261-4/+4
* core: Prune redundant includesGravatar archshift2014-09-081-3/+0
* Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-281-0/+5
* Core: Alter the kernel string functions to use std::string instead of const c...Gravatar Lioncash2014-08-171-10/+7
* Thread: Added more descriptive comment to WaitCurrentThread.Gravatar bunnei2014-08-061-1/+5
* Thread: Added functions to resume threads from address arbitration.Gravatar bunnei2014-07-081-0/+37
* Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-131-48/+45
* Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessar...Gravatar bunnei2014-06-131-9/+7
* HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-131-9/+0
* Thread: Moved position of * in arguments.Gravatar bunnei2014-06-131-2/+2
* Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-131-4/+3
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-131-7/+7
* HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-131-2/+2
* Kernel: Updated several member functions to be constGravatar bunnei2014-06-131-3/+3
* Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...Gravatar bunnei2014-06-131-1/+1
* Kernel: Made SyncRequest not pure virtual, with a default implementation of e...Gravatar bunnei2014-06-131-10/+0
* Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-131-33/+88
* svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic...Gravatar bunnei2014-06-011-0/+45
* kernel: changed main thread priority to default, updated Kernel::Reschedule t...Gravatar bunnei2014-06-011-3/+3
* thread: updated Reschedule to sit at a synchronization barrier when no other ...Gravatar bunnei2014-06-011-0/+18