| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-21 | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup. | bunnei | |
| 2015-01-21 | Thread: Use std::find in CheckWait_WaitObject. | bunnei | |
| 2015-01-21 | Mutex: Cleanup and remove redundant code. | bunnei | |
| 2015-01-21 | Kernel: Renamed some functions for clarity. | bunnei | |
| - ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads. | |||
| 2015-01-21 | Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void. | bunnei | |
| 2015-01-21 | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" ↵ | bunnei | |
| pure virtual. | |||
| 2015-01-21 | Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a ↵ | bunnei | |
| WaitObject safely. | |||
| 2015-01-21 | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that ↵ | bunnei | |
| made no sense. | |||
| 2015-01-21 | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. | bunnei | |
| 2015-01-21 | WaitSynchronizationN: Refactor to fix several bugs | bunnei | |
| - Separate wait checking from waiting the current thread - Resume thread when wait_all=true only if all objects are available at once - Set output to correct wait object index when there are duplicate handles | |||
| 2015-01-21 | Kernel: Separate WaitSynchronization into Wait and Acquire methods. | bunnei | |
| 2015-01-21 | WaitSynchronizationN: Implement return values | bunnei | |
| 2015-01-21 | Thread: Keep track of multiple wait objects. | bunnei | |
| 2015-01-21 | Kernel: Added WaitObject and changed "waitable" objects inherit from it. | bunnei | |
| 2015-01-11 | Merge pull request #466 from Subv/wake | bunnei | |
| Thread: Prevent waking a thread multiple times. | |||
| 2015-01-11 | Thread: Prevent waking a thread multiple times. | Subv | |
| If a thread was woken up by something, cancel the wakeup timeout. | |||
| 2015-01-09 | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | |
| 2015-01-09 | Thread: Fix nullptr access in a logging function | Yuri Kunde Schlesner | |
| 2015-01-09 | Thread: Rename thread_queue => thread_list | Yuri Kunde Schlesner | |
| 2015-01-09 | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | |
| 2015-01-09 | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | |
| 2015-01-09 | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | |
| 2015-01-08 | SVC: Fixed SleepThread. | Subv | |
| It will now properly wait the specified number of nanoseconds and then wake up the thread. | |||
| 2015-01-07 | Threads: Use a dummy idle thread when no other are ready. | Subv | |
| This thread will not actually execute instructions, it will only advance the timing/events and try to yield immediately to the next ready thread, if there aren't any ready threads then it will be rescheduled and start its job again. | |||
| 2015-01-07 | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | |
| Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style. | |||
| 2014-12-28 | Kernel: New handle manager | Yuri Kunde Schlesner | |
| This handle manager more closely mirrors the behaviour of the CTR-OS one. In addition object ref-counts and support for DuplicateHandle have been added. Note that support for DuplicateHandle is still experimental, since parts of the kernel still use Handles internally, which will likely cause troubles if two different handles to the same object are used to e.g. wait on a synchronization primitive. | |||
| 2014-12-28 | Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants | Yuri Kunde Schlesner | |
| 2014-12-28 | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | |
| 2014-12-21 | Merge pull request #291 from purpasmart96/license | bunnei | |
| License change | |||
| 2014-12-20 | License change | purpasmart96 | |
| 2014-12-20 | Thread: Wait current thread on svc_SleepThread | bunnei | |
| - Removed unused VBLANK sleep mode - Added error log for bad context switch - Renamed VerifyWait to CheckWaitType to be more clear | |||
| 2014-12-20 | Kernel: Implement support for current thread pseudo-handle | Yuri Kunde Schlesner | |
| This boots a few (mostly Nintendo 1st party) games further. | |||
| 2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | |
| 2014-12-10 | Merge pull request #256 from Subv/mutex | bunnei | |
| Kernel/Mutex: Properly lock the mutex when a thread enters it | |||
| 2014-12-08 | Thread: Fixed to wait on address when in arbitration. | bunnei | |
| 2014-12-07 | Mutex: Release all held mutexes when a thread exits. | Subv | |
| 2014-12-04 | Threads: Remove a redundant function. | Subv | |
| Use the next_thread_id variable directly. | |||
| 2014-12-04 | Threads: Implemented a sequential thread id | Subv | |
| 2014-12-04 | SVC: Implemented GetThreadId. | Subv | |
| For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware. | |||
| 2014-11-26 | Thread: Check that thread is actually in "wait state" when verifying wait. | bunnei | |
| 2014-11-24 | Use pointers instead of passing handles around in some functions. | Yuri Kunde Schlesner | |
| 2014-11-24 | Remove duplicated docs/update them for changed parameters. | Yuri Kunde Schlesner | |
| 2014-11-24 | HLE: Revamp error handling throrough the HLE code | Yuri Kunde Schlesner | |
| All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed. | |||
| 2014-11-19 | Merge pull request #211 from linkmauve/master | bunnei | |
| Remove trailing spaces from the entire project | |||
| 2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵ | Emmanuel Gil Peyrot | |
| or generated | |||
| 2014-11-18 | Add static to some variables | Lioncash | |
| 2014-10-26 | Add `override` keyword through the code. | Yuri Kunde Schlesner | |
| This was automated using `clang-modernize`. | |||
| 2014-09-08 | core: Prune redundant includes | archshift | |
| 2014-08-28 | Threading: Fix thread starting to execute first instruction correctly. | bunnei | |
| 2014-08-17 | Core: Alter the kernel string functions to use std::string instead of const ↵ | Lioncash | |
| char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names. | |||
