- Dec 04, 2018
-
-
Luke Street authored
-
Luke Street authored
-
- Nov 29, 2018
-
-
Zach Hilman authored
-
Zach Hilman authored
-
- Oct 20, 2018
-
-
Lioncash authored
In the kernel, there isn't a singular handle table that everything gets tossed into or used, rather, each process gets its own handle table that it uses. This currently isn't an issue for us, since we only execute one process at the moment, but we may as well get this out of the way so it's not a headache later on.
-
- Oct 15, 2018
-
-
Lioncash authored
-
- Oct 04, 2018
-
-
Lioncash authored
Many of the member variables of the thread class aren't even used outside of the class itself, so there's no need to make those variables public. This change follows in the steps of the previous changes that made other kernel types' members private. The main motivation behind this is that the Thread class will likely change in the future as emulation becomes more accurate, and letting random bits of the emulator access data members of the Thread class directly makes it a pain to shuffle around and/or modify internals. Having all data members public like this also makes it difficult to reason about certain bits of behavior without first verifying what parts of the core actually use them. Everything being public also generally follows the tendency for changes to be introduced in completely different translation units that would otherwise be better introduced as an addition to the Thread class' public interface.
-
- Sep 20, 2018
-
-
Lioncash authored
Avoids an unnecessary inclusion and also uncovers three places where indirect inclusions were relied upon, which allows us to also resolve those.
-
- Sep 15, 2018
-
-
fearlessTobi authored
-
- Sep 13, 2018
-
-
Lioncash authored
Previously, these were sitting outside of the Kernel namespace, which doesn't really make sense, given they're related to the Thread class which is within the Kernel namespace.
-
- Aug 31, 2018
-
-
Lioncash authored
The follow-up to e2457418, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers.
-
- Aug 29, 2018
-
-
Lioncash authored
As means to pave the way for getting rid of global state within core, This eliminates kernel global state by removing all globals. Instead this introduces a KernelCore class which acts as a kernel instance. This instance lives in the System class, which keeps its lifetime contained to the lifetime of the System class. This also forces the kernel types to actually interact with the main kernel instance itself instead of having transient kernel state placed all over several translation units, keeping everything together. It also has a nice consequence of making dependencies much more explicit. This also makes our initialization a tad bit more correct. Previously we were creating a kernel process before the actual kernel was initialized, which doesn't really make much sense. The KernelCore class itself follows the PImpl idiom, which allows keeping all the implementation details sealed away from everything else, which forces the use of the exposed API and allows us to avoid any unnecessary inclusions within the main kernel header.
-
- Aug 06, 2018
- Jul 26, 2018
-
-
Lioncash authored
Instead, we can just expose functions that return the queryable state instead of letting anything modify it.
-
- Jul 25, 2018
-
-
Lioncash authored
We were missing the enum entry for WaitIPC
-
- Jul 24, 2018
-
-
Lioncash authored
If code execution hits this spot, something has gone very wrong, so mark the path as unreachable. This silences a warning on MSVC.
-
- Jul 20, 2018
-
-
Lioncash authored
Makes the thread status strongly typed, so implicit conversions can't happen. It also makes it easier to catch mistakes at compile time.
-
- Jun 21, 2018
-
-
Michael Scire authored
-
Michael Scire authored
-
- May 19, 2018
-
-
Subv authored
-
- May 10, 2018
- Apr 21, 2018
-
-
Subv authored
-
- Mar 19, 2018
-
-
bunnei authored
-
- Feb 18, 2018
-
-
bunnei authored
-
- Feb 14, 2018
-
-
bunnei authored
-
- Jan 13, 2018
-
-
James Rowe authored
-
James Rowe authored
-
- Jan 12, 2018
-
-
MerryMage authored
-
- Jan 10, 2018
-
-
Subv authored
Threads: Added enum values for the Switch's 4 cpu cores and implemented svcGetInfo(AllowedCpuIdBitmask)
-
- Jan 09, 2018
-
-
bunnei authored
-
Subv authored
Also properly keep track of data in guest memory, this fixes managing the semaphore from userland. It was found that Semaphores are actually Condition Variables, with Release(1) and Release(-1) being equivalent to notify_one and notify_all. We should change the name of the class to reflect this.
-
Subv authored
Kernel: Properly keep track of mutex lock data in the guest memory. This fixes userland locking/unlocking.
-
- May 29, 2017
-
-
Yuri Kunde Schlesner authored
Now that HandleTable doesn't directly depend on WaitObject anymore, this can be separated from the main kernel.h header.
-
- Jan 04, 2017
-
-
Subv authored
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.
-
- Dec 22, 2016
-
-
bunnei authored
-
- Dec 14, 2016
-
-
Subv authored
-