ladybird/Kernel/Graphics/Console
kleines Filmröllchen a6a439243f Kernel: Turn lock ranks into template parameters
This step would ideally not have been necessary (increases amount of
refactoring and templates necessary, which in turn increases build
times), but it gives us a couple of nice properties:
- SpinlockProtected inside Singleton (a very common combination) can now
  obtain any lock rank just via the template parameter. It was not
  previously possible to do this with SingletonInstanceCreator magic.
- SpinlockProtected's lock rank is now mandatory; this is the majority
  of cases and allows us to see where we're still missing proper ranks.
- The type already informs us what lock rank a lock has, which aids code
  readability and (possibly, if gdb cooperates) lock mismatch debugging.
- The rank of a lock can no longer be dynamic, which is not something we
  wanted in the first place (or made use of). Locks randomly changing
  their rank sounds like a disaster waiting to happen.
- In some places, we might be able to statically check that locks are
  taken in the right order (with the right lock rank checking
  implementation) as rank information is fully statically known.

This refactoring even more exposes the fact that Mutex has no lock rank
capabilites, which is not fixed here.
2023-01-02 18:15:27 -05:00
..
BootFramebufferConsole.cpp Kernel/aarch64: Remove specific aarch64 code in BootFramebufferConsole 2022-10-01 14:09:01 +02:00
BootFramebufferConsole.h Kernel: Turn lock ranks into template parameters 2023-01-02 18:15:27 -05:00
Console.h Kernel: Mark Console::{hide,show}_cursor methods protected 2022-09-20 20:51:03 +01:00
ContiguousFramebufferConsole.cpp Kernel: Make self-contained locking smart pointers their own classes 2022-08-20 17:20:43 +02:00
ContiguousFramebufferConsole.h Kernel: Make self-contained locking smart pointers their own classes 2022-08-20 17:20:43 +02:00
GenericFramebufferConsole.cpp Kernel/Console: Fix gaps between background glyph color 2022-06-11 12:19:29 +01:00
GenericFramebufferConsole.h Kernel: Turn lock ranks into template parameters 2023-01-02 18:15:27 -05:00
VGATextModeConsole.cpp Kernel: Remove stale includes of x86 IO header file 2022-09-20 18:43:05 +01:00
VGATextModeConsole.h Kernel: Turn lock ranks into template parameters 2023-01-02 18:15:27 -05:00