Commit Graph

4357 Commits

Author SHA1 Message Date
Kloen d517b84542 QT: Fix some UI related warnings 2017-01-11 13:52:01 +01:00
bunnei 203cfc9cbf Merge pull request #2397 from Subv/pulse
Kernel: Implemented Pulse event and timers.
2017-01-10 10:45:00 -05:00
James Rowe 2d382884f3 Merge pull request #2418 from jroweboy/appveyor_master
Prevents appveyor from attempting to deploy except on the nightly repo
2017-01-08 12:11:12 -07:00
James Rowe 590252e2fe Prevents appveyor from attempting to deploy except on the nightly repo 2017-01-08 11:17:44 -07:00
bunnei ea97a3d52b Merge pull request #2384 from bunnei/internal-res-option
config: Add option for specifying screen resolution scale factor.
2017-01-08 12:25:12 -05:00
bunnei 0c01d14128 Merge pull request #1951 from wwylele/motion-sensor
Emulate motion sensor in frontend
2017-01-07 12:39:20 -05:00
bunnei c785791395 config: Add option for specifying screen resolution scale factor. 2017-01-07 03:23:22 -05:00
bunnei 48aed4d7f9 Merge pull request #2410 from Subv/sleepthread
Don't yield execution in SleepThread(0) if there are no available threads to run
2017-01-06 22:01:33 -05:00
bunnei 9adc10facd Merge pull request #2396 from Subv/sema_acquire
Kernel/Semaphore: Fixed a regression in semaphore waits.
2017-01-06 22:00:12 -05:00
Hyper 4f5b232c5b Kernel: Fix SharedMemory objects always returning error when addr = 0 (#2404)
Closes #2400
2017-01-06 08:21:22 -05:00
bunnei 12712b0b5e Merge pull request #2408 from Subv/priority_boosting
Kernel: Removed the priority boost code for starved threads.
2017-01-06 00:40:39 -05:00
Subv 9340e46590 Kernel: Don't attempt to yield execution in SleepThread(0) if there are no available threads to run.
With this we avoid an useless temporary deschedule of the current thread.
2017-01-05 19:11:34 -05:00
Sebastian Valle 8d3dc51f5e Merge pull request #2409 from Subv/unused_funcs
Kernel: Remove some unused functions.
2017-01-05 14:17:36 -05:00
Subv cbee82c371 Kernel: Remove some unused functions. 2017-01-05 13:17:06 -05:00
Subv 0af38a0ee3 Kernel: Removed the priority boost code for starved threads.
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 13:12:39 -05:00
Subv 2ff5768bc1 Kernel: Implemented Pulse event and timers.
Closes #1904
2017-01-05 13:06:17 -05:00
Subv 66020871a4 Kernel/Semaphore: Fixed a regression in semaphore waits.
The regression was caused by a missing check in #2260.

The new behavior is consistent with the real kernel.
2017-01-05 13:00:05 -05:00
Sebastian Valle 4a6761062d Merge pull request #2393 from Subv/synch
Kernel: Mutex priority inheritance and synchronization improvements.
2017-01-05 12:55:01 -05:00
Subv c2ae798b33 Kernel: Add some asserts to enforce the invariants in the scheduler. 2017-01-05 09:40:18 -05:00
Subv 8d62714c87 Kernel: Remove a thread from all of its waiting objects' waiting_threads 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 09:40:15 -05:00
Subv cd9ba6b5df Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all the objects that a thread is waiting on. 2017-01-05 09:40:14 -05:00
James Rowe 0c8ecd786b Merge pull request #2407 from jroweboy/nightly-deploy
Change travis to deploy on push to citra-nightly.
2017-01-04 21:42:00 -07:00
James Rowe 9cb8b68080 Change travis to deploy on push to citra-nightly. Add more information to the releases page 2017-01-04 21:31:40 -07:00
James Rowe 3d29cb8b6f Merge pull request #2405 from jroweboy/nightly-deploy
Change deploy to use github releases instead
2017-01-04 21:02:51 -07:00
James Rowe 496deed8e0 Change deploy to use github releases instead, but only for the citra-nightly repo 2017-01-04 20:53:46 -07:00
Subv cdca3666da Kernel: Use different thread statuses when a thread calls 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 15:58:50 -05:00
Subv 901d9e5c27 Kernel/Mutex: Propagate thread priority changes to other threads inheriting the priority via mutexes 2017-01-04 15:58:48 -05:00
Subv b67ee215dc Kernel/Mutex: Update a mutex priority when a thread stops waiting on it. 2017-01-04 15:58:47 -05:00
Subv 896e278c28 Kernel/Mutex: Implemented priority inheritance.
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 15:58:46 -05:00
Subv 10e7ec47e2 Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.
This will be useful when implementing mutex priority inheritance.
2017-01-04 15:58:45 -05:00
Subv cb21b68ddc Kernel/Synch: Do not attempt a reschedule on every syscall.
Not all syscalls should cause reschedules, this commit attempts to remedy that, however, it still does not cover all cases.
2017-01-04 15:58:44 -05:00
Jonathan Hao 360cdf0417 Fix some warnings (#2399) 2017-01-04 13:48:29 -03:00
bunnei bff4084721 Update .travis.yml 2017-01-03 23:07:14 -05:00
James Rowe e9a923ea4b Merge pull request #2401 from jroweboy/travis-key
Try a different travis key
2017-01-03 20:03:57 -07:00
James Rowe 634057ae5b Try a different travis key 2017-01-03 20:00:26 -07:00
Yuri Kunde Schlesner c0cda0c27e Merge pull request #2382 from mailwl/nfc
Service/NFC: stub GetTagInRangeEvent
2017-01-03 12:56:02 -03:00
James Rowe 897327e01c Merge pull request #2390 from jroweboy/bintray
Try a different encrypted bintray api key for travis.
2016-12-31 23:57:36 -05:00
James Rowe 0227e1fbef Try a different encrypted bintray api key for travis. Change appveyor to upload to a long git hash (since travis is stuck uploading to the full hash name) 2016-12-31 23:38:15 -05:00
James Rowe 887787e652 Merge pull request #2254 from jroweboy/bintray
Add deploy to bintray for builds to master
2016-12-31 22:16:44 -05:00
James Rowe bc8b3d9086 Trying to make a consistent nightly versioning 2016-12-31 19:37:21 -05:00
James Rowe ab168f00c9 Add deploy to bintray for builds to master 2016-12-31 13:54:51 -05:00
Sebastian Valle 0f3144062e Merge pull request #2386 from bunnei/fix-bg-color
config: SDL: Move background color setting to correct section.
2016-12-30 09:51:56 -05:00
mailwl 48f5bbc1a9 Service/NFC: stub GetTagInRangeEvent
Fix Fatal Error in Mini-Mario & Friends - amiibo Challenge
2016-12-30 09:40:54 +03:00
bunnei fd564b6dd1 config: SDL: Move background color setting to correct section. 2016-12-30 00:35:38 -05:00
bunnei c6b0d3f8c0 Merge pull request #2240 from wwylele/auto-region
Config: auto-select region and language
2016-12-29 22:09:01 -05:00
wwylele bf90fbae94 Frontend: make motion sensor interfaced thread-safe 2016-12-29 21:18:36 +02:00
bunnei fe7da63938 Merge pull request #2367 from JayFoxRox/lighting-lut-quickfix
Lighting LUT Quickfix
2016-12-29 13:41:51 -05:00
bunnei 0e1aeb2086 Merge pull request #2376 from wwylele/remove-unused
Core: remove unused hle.cpp
2016-12-27 10:43:13 -05:00
wwylele 1e5c0701e7 Core: remove unused hle.cpp 2016-12-27 10:27:48 +02:00
bunnei 16d3ed98c3 Merge pull request #2374 from wwylele/whats-going-on-with-that-pr
Core: reset cpu_core in Shutdown to make IsPoweredOn work properly
2016-12-26 18:19:40 -05:00