| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-02-27 | Timer: restore missing signaled=true from #2421 | wwylele | |
| 2017-02-27 | Fix log entry in timer::signal (#2600) | B3n30 | |
| 2017-02-26 | Doxygen: Amend minor issues (#2593) | Mat M | |
| Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues. | |||
| 2017-02-26 | Merge pull request #2587 from yuriks/status-bar | Yuri Kunde Schlesner | |
| Replace built-in Profiler with indicators in status bar | |||
| 2017-02-26 | Core: Remove unnecessary include in thread.h | Yuri Kunde Schlesner | |
| 2017-02-21 | Timers: Immediately signal the timer if it was started with an initial value ↵ | Subv | |
| of 0. | |||
| 2017-01-11 | Threads: Check the process' resource limit for the max allowed priority when ↵ | Subv | |
| creating a thread and remove the priority clamping code. | |||
| 2017-01-11 | Thread: Added priority range checking to svcSetThreadPriority and removed ↵ | Subv | |
| priority clamping code from Thread::SetPriority. | |||
| 2017-01-10 | Merge pull request #2397 from Subv/pulse | bunnei | |
| Kernel: Implemented Pulse event and timers. | |||
| 2017-01-06 | Merge pull request #2410 from Subv/sleepthread | bunnei | |
| Don't yield execution in SleepThread(0) if there are no available threads to run | |||
| 2017-01-06 | Merge pull request #2396 from Subv/sema_acquire | bunnei | |
| Kernel/Semaphore: Fixed a regression in semaphore waits. | |||
| 2017-01-06 | Merge pull request #2408 from Subv/priority_boosting | bunnei | |
| Kernel: Removed the priority boost code for starved threads. | |||
| 2017-01-05 | Kernel: Don't attempt to yield execution in SleepThread(0) if there are no ↵ | Subv | |
| available threads to run. With this we avoid an useless temporary deschedule of the current thread. | |||
| 2017-01-05 | Kernel: Remove some unused functions. | Subv | |
| 2017-01-05 | Kernel: Removed the priority boost code for starved threads. | Subv | |
| After hwtesting and reverse engineering the kernel, it was found that the CTROS scheduler performs no priority boosting for threads like this, although some other forms of scheduling priority-starved threads might take place. For example, it was found that hardware interrupts might cause low-priority threads to run if the CPU is preempted in the middle of an SVC handler that deschedules the current (high priority) thread before scheduling it again. | |||
| 2017-01-05 | Kernel: Implemented Pulse event and timers. | Subv | |
| Closes #1904 | |||
| 2017-01-05 | Kernel/Semaphore: Fixed a regression in semaphore waits. | Subv | |
| The regression was caused by a missing check in #2260. The new behavior is consistent with the real kernel. | |||
| 2017-01-05 | Kernel: Add some asserts to enforce the invariants in the scheduler. | Subv | |
| 2017-01-05 | Kernel: Remove a thread from all of its waiting objects' waiting_threads ↵ | Subv | |
| list when it is awoken. This fixes a potential bug where threads would not get removed from said list if they awoke after waiting with WaitSynchronizationN with wait_all = false | |||
| 2017-01-05 | Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all ↵ | Subv | |
| the objects that a thread is waiting on. | |||
| 2017-01-04 | Kernel: Use different thread statuses when a thread calls ↵ | Subv | |
| WaitSynchronization1 and WaitSynchronizationN with wait_all = true. This commit removes the overly general THREADSTATUS_WAIT_SYNCH and replaces it with two more granular statuses: THREADSTATUS_WAIT_SYNCH_ANY when a thread waits on objects via WaitSynchronization1 or WaitSynchronizationN with wait_all = false. THREADSTATUS_WAIT_SYNCH_ALL when a thread waits on objects via WaitSynchronizationN with wait_all = true. | |||
| 2017-01-04 | Kernel/Mutex: Propagate thread priority changes to other threads inheriting ↵ | Subv | |
| the priority via mutexes | |||
| 2017-01-04 | Kernel/Mutex: Update a mutex priority when a thread stops waiting on it. | Subv | |
| 2017-01-04 | Kernel/Mutex: Implemented priority inheritance. | Subv | |
| The implementation is based on reverse engineering of the 3DS's kernel. A mutex holder's priority will be temporarily boosted to the best priority among any threads that want to acquire any of its held mutexes. When the holder releases the mutex, it's priority will be boosted to the best priority among the threads that want to acquire any of its remaining held mutexes. | |||
| 2017-01-04 | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter. | Subv | |
| This will be useful when implementing mutex priority inheritance. | |||
| 2017-01-04 | Kernel/Synch: Do not attempt a reschedule on every syscall. | Subv | |
| Not all syscalls should cause reschedules, this commit attempts to remedy that, however, it still does not cover all cases. | |||
| 2016-12-22 | ThreadContext: Move from "core" to "arm_interface". | bunnei | |
| 2016-12-22 | core: Replace "AppCore" nomenclature with just "CPU". | bunnei | |
| 2016-12-21 | core: Remove HLE module, consolidate code & various cleanups. | bunnei | |
| 2016-12-21 | core: Consolidate core and system state, remove system module & cleanups. | bunnei | |
| 2016-12-17 | Thread: remove the thread from the thread list when exiting | wwylele | |
| 2016-12-16 | Kernel: remove object's waiting thread if it is dead | wwylele | |
| 2016-12-16 | Merge pull request #2260 from Subv/scheduling | bunnei | |
| Threading: Reworked the way our scheduler works. | |||
| 2016-12-14 | Fixed the codestyle to match our clang-format rules. | Subv | |
| 2016-12-14 | Fixed the codestyle to match our clang-format rules. | Subv | |
| 2016-12-10 | Properly remove a thread from its wait_objects' waitlist when it is awoken ↵ | Subv | |
| by a timeout. | |||
| 2016-12-09 | Moved the HLE command buffer translation task to ServerSession instead of ↵ | Subv | |
| the HLE handler superclass. | |||
| 2016-12-09 | WaitSynch: Removed unused variables and reduced SharedPtr copies. | Subv | |
| Define a variable with the value of the sync timeout error code. Use a boost::flat_map instead of an unordered_map to hold the equivalence of objects and wait indices in a WaitSynchN call. | |||
| 2016-12-08 | Added a framework for partially handling Session disconnections. | Subv | |
| Further implementation will happen in a future commit. Fixes a regression. | |||
| 2016-12-08 | Use std::move where appropriate. | Subv | |
| 2016-12-06 | Use boost remove_erase_if instead of the erase-remove idiom | Subv | |
| 2016-12-06 | Improved the algorithm for GetHighestPriorityReadyThread. | Subv | |
| 2016-12-05 | Return an error code when connecting to a saturated port. | Subv | |
| The error code was taken from the 3DS kernel. | |||
| 2016-12-05 | Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, ↵ | Subv | |
| TranslateRequest and HandleSyncRequestImpl. HandleSyncRequest now takes care of calling the command buffer translate function before actually invoking the command handler for HLE services. | |||
| 2016-12-05 | Kernel: Remove the Redirection handle type. | Subv | |
| 2016-12-05 | KServerPorts now have an HLE handler "template", which is inherited by all ↵ | Subv | |
| ServerSessions created from it. | |||
| 2016-12-04 | Threading: Added some utility functions and const correctness. | Subv | |
| 2016-12-03 | Threading: Reworked the way our scheduler works. | Subv | |
| Threads will now be awakened when the objects they're waiting on are signaled, instead of repeating the WaitSynchronization call every now and then. The scheduler is now called once after every SVC call, and once after a thread is awakened from sleep by its timeout callback. This new implementation is based off reverse-engineering of the real kernel. See https://gist.github.com/Subv/02f29bd9f1e5deb7aceea1e8f019c8f4 for a more detailed description of how the real kernel handles rescheduling. | |||
| 2016-12-02 | Declare empty ServerSession and ClientSession constructors as default. | Subv | |
| 2016-11-30 | Fixed the rebase mistakes. | Subv | |
