kernel: add a few comments

This commit is contained in:
apio 2022-10-11 19:51:24 +02:00
parent feb8c1c31b
commit 04da26bff5
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ namespace VFS
};
ssize_t read(Node* node, size_t offset, size_t length, char* buffer);
int mkdir(const char* path, const char* name);
int mkdir(const char* path, const char* name); // FIXME: Support deducing this via a single path.
void mount_root(Node* root);

View File

@ -87,7 +87,7 @@ extern "C" void _start()
VFS::mkdir("/", "dev");
VFS::mount("/dev", DeviceFS::get());
Interrupts::enable();
Interrupts::enable(); // Task switching commences here
kinfoln("Interrupts enabled");