Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-12 | Merge pull request #2424 from Kloen/qt-ui-warnings-really | bunnei | |
Qt: Fix UI related warnings and bonus ui file format | |||
2017-01-12 | Merge pull request #2425 from Subv/cleanup_todos | bunnei | |
Implement some TODOs in the code. | |||
2017-01-12 | Merge pull request #2308 from mailwl/ac-i | bunnei | |
Service/AC: add ac:i service | |||
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-11 | Y2R: Use the proper error code when GetStandardCoefficient receives an ↵ | Subv | |
invalid value. | |||
2017-01-11 | QT: Fix ui file format | Kloen | |
2017-01-11 | QT: Fix some UI related warnings | Kloen | |
2017-01-10 | Merge pull request #2397 from Subv/pulse | bunnei | |
Kernel: Implemented Pulse event and timers. | |||
2017-01-08 | Merge pull request #2418 from jroweboy/appveyor_master | James Rowe | |
Prevents appveyor from attempting to deploy except on the nightly repo | |||
2017-01-08 | Prevents appveyor from attempting to deploy except on the nightly repo | James Rowe | |
2017-01-08 | Merge pull request #2384 from bunnei/internal-res-option | bunnei | |
config: Add option for specifying screen resolution scale factor. | |||
2017-01-07 | Merge pull request #1951 from wwylele/motion-sensor | bunnei | |
Emulate motion sensor in frontend | |||
2017-01-07 | config: Add option for specifying screen resolution scale factor. | bunnei | |
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 | Kernel: Fix SharedMemory objects always returning error when addr = 0 (#2404) | Hyper | |
Closes #2400 | |||
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 | Merge pull request #2409 from Subv/unused_funcs | Sebastian Valle | |
Kernel: Remove some unused functions. | |||
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 | Merge pull request #2393 from Subv/synch | Sebastian Valle | |
Kernel: Mutex priority inheritance and synchronization improvements. | |||
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 | Merge pull request #2407 from jroweboy/nightly-deploy | James Rowe | |
Change travis to deploy on push to citra-nightly. | |||
2017-01-04 | Change travis to deploy on push to citra-nightly. Add more information to ↵ | James Rowe | |
the releases page | |||
2017-01-04 | Merge pull request #2405 from jroweboy/nightly-deploy | James Rowe | |
Change deploy to use github releases instead | |||
2017-01-04 | Change deploy to use github releases instead, but only for the citra-nightly ↵ | James Rowe | |
repo | |||
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. | |||
2017-01-04 | Fix some warnings (#2399) | Jonathan Hao | |
2017-01-03 | Update .travis.yml | bunnei | |
2017-01-03 | Merge pull request #2401 from jroweboy/travis-key | James Rowe | |
Try a different travis key | |||
2017-01-03 | Try a different travis key | James Rowe | |
2017-01-03 | Merge pull request #2382 from mailwl/nfc | Yuri Kunde Schlesner | |
Service/NFC: stub GetTagInRangeEvent | |||
2016-12-31 | Merge pull request #2390 from jroweboy/bintray | James Rowe | |
Try a different encrypted bintray api key for travis. | |||
2016-12-31 | Try a different encrypted bintray api key for travis. Change appveyor to ↵ | James Rowe | |
upload to a long git hash (since travis is stuck uploading to the full hash name) | |||
2016-12-31 | Merge pull request #2254 from jroweboy/bintray | James Rowe | |
Add deploy to bintray for builds to master | |||
2016-12-31 | Trying to make a consistent nightly versioning | James Rowe | |
2016-12-31 | Add deploy to bintray for builds to master | James Rowe | |
2016-12-30 | Merge pull request #2386 from bunnei/fix-bg-color | Sebastian Valle | |
config: SDL: Move background color setting to correct section. | |||
2016-12-30 | Service/NFC: stub GetTagInRangeEvent | mailwl | |
Fix Fatal Error in Mini-Mario & Friends - amiibo Challenge |