Compare commits

..

No commits in common. "b0e5d02c9acfd5d3f9980712cf573d9a7e1a81bb" and "8de59138effb046321f7b031f404aa6761bd9c55" have entirely different histories.

6 changed files with 5 additions and 9 deletions

View File

@ -71,9 +71,6 @@ Result<void> init()
CPU::platform_finish_init();
// Disable console logging before transferring control to userspace.
setup_log(log_debug_enabled(), log_serial_enabled(), false);
CPU::enable_interrupts();
return {};

View File

@ -1,4 +1,4 @@
/* bits/errno-return.h: A convenient way of setting errno after a syscall. */
/* bits/errno-return.h: Provides a convenient way of setting errno after a syscall. */
#ifndef _BITS_ERRNO_RETURN_H
#define _BITS_ERRNO_RETURN_H

View File

@ -1,4 +1,4 @@
/* bits/timespec.h: The timespec structure. */
/* bits/timespec.h: Defines the timespec structure. */
#ifndef _BITS_TIMESPEC_H
#define _BITS_TIMESPEC_H

View File

@ -1,4 +1,4 @@
/* ctype.h: Character handling. */
/* ctype.h: Character handling functions. */
#ifndef _CTYPE_H
#define _CTYPE_H

View File

@ -1,10 +1,9 @@
/* sys/syscall.h: Syscall constants. */
/* sys/syscall.h: Defines syscall numbers. */
#ifndef _SYS_SYSCALL_H
#define _SYS_SYSCALL_H
/* This header just forwards to luna/Syscall.h, which is used in the kernel as well. */
#include <luna/Syscall.h>
#undef enumerate_syscalls
#endif

View File

@ -1,4 +1,4 @@
/* time.h: Time management. */
/* time.h: Time management functions. */
#ifndef _TIME_H
#define _TIME_H