Skip to content
#

microkernel

A kernel is the heart of almost every operating system. It is always loaded in memory at any time and deals with the hardware to provide an interface for the software. It also manages peripherals, memory, interrupts, and processes. Examples of widely used kernels include Windows NT and Linux.

Here are 129 public repositories matching this topic...

bennoleslie
bennoleslie commented Sep 6, 2021

Most of the times when an invocation fails it calls userError to provide some additional diagnostics about what is going wrong.

However, there are a few places over the kernel where this is missed. It would be great to have this in all places.

As an extension it would be even better to include additional diagnostics information on the failure. For example:

    if (length < 6 || cur
avdgrinten
avdgrinten commented May 26, 2021

Thor currently creates objects over the mbus protocol at various places (see below for a list); it does that by directly constructing protocol messages. To make the code more maintainable (e.g., such that we can later restructure the architecture of mbus and resolve issues #158 #159 #160), it would be beneficial to refactor Thor to use an abstraction over mbus instead. This abstraction can be simi

Wikipedia
Wikipedia