Skip to content
Snippets Groups Projects
  1. Dec 04, 2018
  2. Nov 29, 2018
  3. Oct 20, 2018
    • Lioncash's avatar
      kernel/process: Make the handle table per-process · 90a981a0
      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.
      90a981a0
  4. Oct 15, 2018
  5. Oct 04, 2018
    • Lioncash's avatar
      kernel/thread: Make all instance variables private · baed7e1f
      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.
      baed7e1f
  6. Sep 20, 2018
  7. Sep 15, 2018
  8. Sep 13, 2018
  9. Aug 31, 2018
    • Lioncash's avatar
      core/core: Replace includes with forward declarations where applicable · 4a587b81
      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.
      4a587b81
  10. Aug 29, 2018
    • Lioncash's avatar
      kernel: Eliminate kernel global state · 0cbcd6ec
      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.
      0cbcd6ec
  11. Aug 06, 2018
  12. Jul 26, 2018
  13. Jul 25, 2018
  14. Jul 24, 2018
  15. Jul 20, 2018
  16. Jun 21, 2018
  17. May 19, 2018
  18. May 10, 2018
  19. Apr 21, 2018
  20. Mar 19, 2018
  21. Feb 18, 2018
  22. Feb 14, 2018
  23. Jan 13, 2018
  24. Jan 12, 2018
  25. Jan 10, 2018
  26. Jan 09, 2018
  27. May 29, 2017
  28. Jan 04, 2017
    • Subv's avatar
      Kernel: Use different thread statuses when a thread calls WaitSynchronization1... · cef5f45d
      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.
      cef5f45d
  29. Dec 22, 2016
  30. Dec 14, 2016
Loading