| Commit message (Expand) | Author | Age | Files | Lines |
| * | Scheduler refactor Pt. 1 | Kevin Hartman | 2015-02-09 | 1 | -33/+82 |
| * | Kernel: Make WaitObjects share ownership of Threads waiting on them | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+2 |
| * | Explicitly instantiate constructors/destructors for Kernel objects | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+1 |
| * | Mutex: Replace g_mutex_held_locks with a set inside Thread | Yuri Kunde Schlesner | 2015-02-02 | 1 | -2/+8 |
| * | Kernel: Use separate Handle tables for CoreTiming userdata | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+3 |
| * | Thread: Modernize two functions that slipped through previous rebases | Yuri Kunde Schlesner | 2015-02-02 | 1 | -8/+7 |
| * | Kernel: Mark all appropriate kernel objects as "final" | Yuri Kunde Schlesner | 2015-01-30 | 1 | -2/+1 |
| * | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup. | bunnei | 2015-01-21 | 1 | -7/+14 |
| * | Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void. | bunnei | 2015-01-21 | 1 | -2/+2 |
| * | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p... | bunnei | 2015-01-21 | 1 | -1/+1 |
| * | Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObj... | bunnei | 2015-01-21 | 1 | -1/+1 |
| * | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that mad... | bunnei | 2015-01-21 | 1 | -9/+8 |
| * | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. | bunnei | 2015-01-21 | 1 | -31/+10 |
| * | WaitSynchronizationN: Refactor to fix several bugs | bunnei | 2015-01-21 | 1 | -2/+2 |
| * | Kernel: Separate WaitSynchronization into Wait and Acquire methods. | bunnei | 2015-01-21 | 1 | -1/+2 |
| * | WaitSynchronizationN: Implement return values | bunnei | 2015-01-21 | 1 | -16/+42 |
| * | Thread: Keep track of multiple wait objects. | bunnei | 2015-01-21 | 1 | -3/+3 |
| * | Kernel: Added WaitObject and changed "waitable" objects inherit from it. | bunnei | 2015-01-21 | 1 | -3/+1 |
| * | core: Fix a few docstrings | Lioncash | 2015-01-20 | 1 | -1/+1 |
| * | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | 2015-01-09 | 1 | -4/+4 |
| * | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | 2015-01-09 | 1 | -46/+22 |
| * | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | 2015-01-09 | 1 | -0/+57 |
| * | Merge pull request #255 from Subv/cbranch_3 | bunnei | 2015-01-08 | 1 | -0/+1 |
| |\ |
|
| | * | SVC: Implemented the Timer service calls. | Subv | 2015-01-08 | 1 | -0/+1 |
| * | | SVC: Fixed SleepThread. | Subv | 2015-01-08 | 1 | -0/+7 |
| * | | Threads: Use a dummy idle thread when no other are ready. | Subv | 2015-01-07 | 1 | -0/+11 |
| |/ |
|
| * | Kernel: New handle manager | Yuri Kunde Schlesner | 2014-12-28 | 1 | -3/+0 |
| * | 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 | -1/+0 |
| * | | Kernel: Implement support for current thread pseudo-handle | Yuri Kunde Schlesner | 2014-12-20 | 1 | -0/+3 |
| |/ |
|
| * | Thread: Fixed to wait on address when in arbitration. | bunnei | 2014-12-08 | 1 | -0/+11 |
| * | Threads: Implemented a sequential thread id | Subv | 2014-12-04 | 1 | -1/+6 |
| * | SVC: Implemented GetThreadId. | Subv | 2014-12-04 | 1 | -0/+3 |
| * | HLE: Revamp error handling throrough the HLE code | Yuri Kunde Schlesner | 2014-11-24 | 1 | -3/+4 |
| * | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ... | Emmanuel Gil Peyrot | 2014-11-19 | 1 | -1/+1 |
| * | 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/+7 |
| * | Kernel: Added real support for thread and event blocking | bunnei | 2014-06-13 | 1 | -3/+6 |
| * | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic... | bunnei | 2014-06-01 | 1 | -0/+6 |
| * | thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reaso... | bunnei | 2014-05-22 | 1 | -2/+2 |
| * | thread: removed unused SwitchContext/Reschedule reason field, added missing a... | bunnei | 2014-05-22 | 1 | -1/+1 |
| * | kernel: refactored function naming to remove "__" prefix | bunnei | 2014-05-22 | 1 | -2/+2 |
| * | thread: moved ThreadStatus/WaitType to header, added support for arg on Creat... | bunnei | 2014-05-22 | 1 | -1/+25 |
| * | thread: added correct lowest thread priority, added a thread priority check, ... | bunnei | 2014-05-20 | 1 | -6/+7 |
| * | thread: exposed ResumeThreadFromWait function for use in other kernel modules | bunnei | 2014-05-20 | 1 | -0/+3 |
| * | thread: moved threading calls to the Kernel namespace | bunnei | 2014-05-20 | 1 | -9/+17 |
| * | thread: whitespace change - fixed * and & placement | bunnei | 2014-05-20 | 1 | -2/+2 |
| * | - created a Kernel namespace | bunnei | 2014-05-20 | 1 | -2/+2 |
| * | thread: added declaration for __KernelReschedule to be used by syscall module | bunnei | 2014-05-19 | 1 | -0/+3 |