meta: rename

This commit is contained in:
2024-11-02 11:31:51 +00:00
parent 065fdeec65
commit 62ec4c93ab
140 changed files with 422 additions and 857 deletions

View File

@@ -1,6 +1,6 @@
#include <socks/arg.h>
#include <socks/libc/string.h>
#include <socks/libc/ctype.h>
#include <mango/arg.h>
#include <mango/libc/string.h>
#include <mango/libc/ctype.h>
static char g_cmdline[CMDLINE_MAX + 1] = {0};

View File

@@ -1,6 +1,6 @@
#include <socks/clock.h>
#include <socks/printk.h>
#include <socks/compiler.h>
#include <mango/clock.h>
#include <mango/printk.h>
#include <mango/compiler.h>
static clock_ticks_t ticks_per_sec = 0;
volatile clock_ticks_t clock_ticks = 0;

View File

@@ -1,7 +1,7 @@
#include <socks/console.h>
#include <socks/queue.h>
#include <socks/locks.h>
#include <socks/libc/string.h>
#include <mango/console.h>
#include <mango/queue.h>
#include <mango/locks.h>
#include <mango/libc/string.h>
static struct queue consoles;
static spin_lock_t consoles_lock = SPIN_LOCK_INIT;

View File

@@ -1,6 +1,6 @@
#include <socks/cpu.h>
#include <socks/percpu.h>
#include <socks/bitmap.h>
#include <mango/cpu.h>
#include <mango/percpu.h>
#include <mango/bitmap.h>
DECLARE_BITMAP(cpu_available, CPU_MAX);
DECLARE_BITMAP(cpu_online, CPU_MAX);

View File

@@ -1,9 +1,9 @@
#include <stdarg.h>
#include <socks/machine/panic.h>
#include <socks/libc/stdio.h>
#include <socks/printk.h>
#include <socks/sched.h>
#include <socks/cpu.h>
#include <mango/machine/panic.h>
#include <mango/libc/stdio.h>
#include <mango/printk.h>
#include <mango/sched.h>
#include <mango/cpu.h>
static int has_panicked = 0;

View File

@@ -1,6 +1,6 @@
#include <socks/percpu.h>
#include <socks/cpu.h>
#include <socks/vm.h>
#include <mango/percpu.h>
#include <mango/cpu.h>
#include <mango/vm.h>
#include <stdint.h>
#include <stddef.h>

View File

@@ -1,7 +1,7 @@
#include <socks/printk.h>
#include <socks/locks.h>
#include <socks/console.h>
#include <socks/libc/stdio.h>
#include <mango/printk.h>
#include <mango/locks.h>
#include <mango/console.h>
#include <mango/libc/stdio.h>
#include <stdarg.h>
#define LOG_BUFFER_SIZE 0x40000

View File

@@ -1,4 +1,4 @@
#include <socks/status.h>
#include <mango/status.h>
#define ERROR_STRING_CASE(code) \
case code: \