mirror of
https://github.com/justinian/jsix.git
synced 2025-12-12 09:24:31 -08:00
[all] Rename kernel::args to kernel::init
The kernel::args namespace is really the protocol for initializing the kernel from the bootloader. Also, the header struct in that namespace isn't actually a header, but a collection of parameters. This change renames the namespace to kernel::init and the struct to args.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#include "kutil/spinlock.h"
|
||||
|
||||
namespace kernel {
|
||||
namespace args {
|
||||
namespace init {
|
||||
struct frame_block;
|
||||
}}
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace args {
|
||||
class frame_allocator
|
||||
{
|
||||
public:
|
||||
using frame_block = kernel::args::frame_block;
|
||||
using frame_block = kernel::init::frame_block;
|
||||
|
||||
/// Constructor
|
||||
/// \arg blocks The bootloader-supplied frame bitmap block list
|
||||
|
||||
Reference in New Issue
Block a user