Lioncash
e433e99191
hid/npad: Remove redundant non-const variant of IsControllerSupported()
The const qualified variant can also be called in non-const contexts, so
we can remove the non-const variant to eliminate a bit of code
duplication.
6 years ago
Lioncash
a71e8066a1
hid/npad: Move function declarations
Clearly separate these from the variable declarations to make them more
visible.
6 years ago
Lioncash
98c6a95079
core/core: Resolve -Wreorder warnings
Amends the initializer lists to be ordered in the same manner that
they're declared within the class.
6 years ago
Lioncash
6414d9e2e5
core/memory/cheat_engine: Resolve -Wreorder warnings
Amends the initializer lists to be ordered in the same manner that
they're declared within the class.
6 years ago
Lioncash
b77430df70
apm/controller: Make SetPerformanceConfiguration() use an array of pairs over a map
While a map is an OK way to do lookups (and usually recommended in most
cases), this is a map that lives for the entire duration of the program
and only deallocates its contents when the program terminates.
Given the total size of the map is quite small, we can simply use a
std::array of pairs and utilize std::find_if to perform the same
behavior without loss of performance.
This eliminates a static constructor and places the data into the
read-only segment.
While we're at it, we can also handle malformed inputs instead of
directly dereferencing the resulting iterator.
6 years ago
Lioncash
141d929929
apm/controller: Make GetCurrentPerformanceMode() a const member function
This doesn't modify instance state, so it can be made const qualified.
6 years ago
Lioncash
cc1d7048b5
bcat: Remove use of global system accessors
Removes all uses of the global system accessor within the BCAT
interface.
6 years ago
Fernando Sahmkow
64e652d8cb
Kernel Thread: Cleanup THREADPROCESSORID_DONT_UPDATE.
6 years ago
Fernando Sahmkow
e28c7f5217
Kernel: Address Feedback 2
6 years ago
Fernando Sahmkow
a3524879be
Kernel: Clang Format
6 years ago
Fernando Sahmkow
c32520ceb7
Kernel: Reverse global accessor removal.
6 years ago
Fernando Sahmkow
3073615dbc
Kernel: Address Feedback.
6 years ago
Fernando Sahmkow
25f8606a6d
Kernel Scheduler: Make sure the global scheduler shutdowns correctly.
6 years ago
Fernando Sahmkow
b3c1deba49
Kernel_Thread: Eliminate most global accessors.
6 years ago
Fernando Sahmkow
0b72b34d89
KernelSVC: Assert that condition variable address is aligned to 4 bytes.
6 years ago
Fernando Sahmkow
96b1b144af
Kernel: Correct Paused scheduling
6 years ago
Fernando Sahmkow
1c6a11ab14
Kernel: Corrections to Wait Objects clearing in which a thread could still be signalled after a timeout or a cancel.
6 years ago
Fernando Sahmkow
27d571c084
Kernel: Correct redundant yields to only advance time forward.
6 years ago
Fernando Sahmkow
7176857177
Kernel: Corrections to ModifyByWaitingCountAndSignalToAddressIfEqual
6 years ago
Fernando Sahmkow
44e09e5f21
Kernel: Correct Results in Condition Variables and Mutexes
6 years ago
Fernando Sahmkow
1ec1e81373
Kernel: Clang Format
6 years ago
Fernando Sahmkow
e05a8c2385
Kernel: Remove global system accessor from WaitObject
6 years ago
Fernando Sahmkow
0cf26cee59
Scheduler: Implement Yield Count and Core migration on Thread Preemption.
6 years ago
Fernando Sahmkow
2d382de6fa
Scheduler: Corrections to YieldAndBalanceLoad and Yield bombing protection.
6 years ago
Fernando Sahmkow
b49c0dab87
Kernel: Initial implementation of thread preemption.
6 years ago
Fernando Sahmkow
103f3a2fe5
Scheduler: Add protections for Yield bombing
In case of redundant yields, the scheduler will now idle the core for
it's timeslice, in order to avoid continuously yielding the same thing
over and over.
6 years ago
Fernando Sahmkow
82218c925a
Kernel: Style and Corrections
7 years ago
Fernando Sahmkow
fcc6b34fff
Correct PrepareReschedule
7 years ago
Fernando Sahmkow
3a94e7ea33
Comment and reorganize the scheduler
7 years ago
Fernando Sahmkow
b5d1e44782
Add PrepareReschedule where required.
7 years ago
Fernando Sahmkow
b8b7ebcece
Correct compiling errors and addapt to the new interface.
7 years ago
Fernando Sahmkow
9031502974
Correct Supervisor Calls to work with the new scheduler,
7 years ago
Fernando Sahmkow
47c6c78c03
Redesign CPU Cores to work with the new scheduler
7 years ago
Fernando Sahmkow
57a71f899a
Add interfacing to the Global Scheduler
7 years ago
Fernando Sahmkow
a1ac0c6cb4
Addapt thread class to the new Scheduler
7 years ago
Fernando Sahmkow
b164d8ee53
Implement a new Core Scheduler
7 years ago
Zach Hilman
e0b9ee9b94
card_image: Implement system update commands in XCI
6 years ago
Zach Hilman
1911f85391
pl_u: Fix mismatched rebase size error in font encryption
6 years ago
Zach Hilman
36d829c27b
pl_u: Use kernel physical memory
6 years ago
Zach Hilman
b3a8a094a5
pl_u: Remove excess static qualifier
6 years ago
Zach Hilman
40284c6868
pl_u: Use OSS system archives if real archives don't exist
6 years ago
Zach Hilman
920742d418
system_archive: Synthesize shared fonts system archives
7 years ago
Zach Hilman
d6d6a87bde
externals: Move OSS font data to file_sys in core
7 years ago
Lioncash
574440d59f
nvflinger/buffer_queue: Remove use of a global system accessor
6 years ago
Fernando Sahmkow
a4ae11d63e
Core_Timing: Address Remaining feedback.
6 years ago
Fernando Sahmkow
e0650a2034
Core_Timing: Address Feedback and suppress warnings.
6 years ago
Fernando Sahmkow
96f2b16356
Core Timing: Correct Idle and remove lefting pragma
6 years ago
Fernando Sahmkow
65aff6930b
Core Timing: General corrections and added tests.
6 years ago
Fernando Sahmkow
555866f8dc
Core Timing: Rework Core Timing to run all cores evenly.
6 years ago
Morph
29e15601f3
hid: Implement DeactivateNpad
Makes use of the already existing DeactivateController function.
6 years ago