Reorganize libmsl
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
#pragma clang optimize off
|
#pragma clang optimize off
|
||||||
|
|
||||||
#include <liballoc.h>
|
#include <liballoc.h>
|
||||||
#include <m/system.h>
|
#include <system.h>
|
||||||
|
|
||||||
#define LIBALLOC_MUTEX 500
|
#define LIBALLOC_MUTEX 500
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <kb.h>
|
#include <kb.h>
|
||||||
#include <m/system.h>
|
#include <system.h>
|
||||||
#include <m/kb_device.h>
|
#include <m/kb_device.h>
|
||||||
#include <m/status.h>
|
#include <m/status.h>
|
||||||
|
|
||||||
|
|||||||
1
libmsl/.gitignore
vendored
1
libmsl/.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
*.o
|
||||||
*.json
|
*.json
|
||||||
docs/
|
docs/
|
||||||
.cache/
|
.cache/
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include <liballoc.h>
|
#include <liballoc.h>
|
||||||
#include <m/system.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <system.h>
|
||||||
|
|
||||||
extern volatile uint8_t __bss_start[];
|
extern volatile uint8_t __bss_start[];
|
||||||
extern volatile uint8_t __bss_end[];
|
extern volatile uint8_t __bss_end[];
|
||||||
|
|||||||
1
libmsl/m/.gitignore
vendored
1
libmsl/m/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
*.o
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
c += m/system.c
|
|
||||||
|
|
||||||
o += m/system.o
|
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
include $(platform)/src.mk
|
include $(platform)/src.mk
|
||||||
include init/src.mk
|
include init/src.mk
|
||||||
include m/src.mk
|
|
||||||
|
c += system.c
|
||||||
|
|
||||||
|
o += system.o
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#include <m/syscall.h>
|
|
||||||
#include <m/system.h>
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <syscall.h>
|
||||||
|
#include <system.h>
|
||||||
|
|
||||||
#define do_syscall1(id, a1, a2, a3, a4, a5, a6, ...) \
|
#define do_syscall1(id, a1, a2, a3, a4, a5, a6, ...) \
|
||||||
syscall (id, (uintptr_t)a1, (uintptr_t)a2, (uintptr_t)a3, (uintptr_t)a4, (uintptr_t)a5, \
|
syscall (id, (uintptr_t)a1, (uintptr_t)a2, (uintptr_t)a3, (uintptr_t)a4, (uintptr_t)a5, \
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
#include <liballoc.h>
|
#include <liballoc.h>
|
||||||
#include <m/status.h>
|
#include <m/status.h>
|
||||||
#include <m/system.h>
|
|
||||||
#include <process.h>
|
#include <process.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <system.h>
|
||||||
|
|
||||||
int process_spawn (process_func_t func, void* argument_ptr) {
|
int process_spawn (process_func_t func, void* argument_ptr) {
|
||||||
void* stack = malloc (STACK_SIZE);
|
void* stack = malloc (STACK_SIZE);
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#ifndef _LIBPROCESS_PROCESS_PROCESS_H
|
#ifndef _LIBPROCESS_PROCESS_PROCESS_H
|
||||||
#define _LIBPROCESS_PROCESS_PROCESS_H
|
#define _LIBPROCESS_PROCESS_PROCESS_H
|
||||||
|
|
||||||
#include <m/system.h>
|
#include <system.h>
|
||||||
|
|
||||||
/* Size of process' stack */
|
/* Size of process' stack */
|
||||||
#define STACK_SIZE (256 * PAGE_SIZE)
|
#define STACK_SIZE (256 * PAGE_SIZE)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#include <m/system.h>
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <system.h>
|
||||||
#include <terminal.h>
|
#include <terminal.h>
|
||||||
|
|
||||||
void terminal_print (const char* string, size_t len) {
|
void terminal_print (const char* string, size_t len) {
|
||||||
|
|||||||
Reference in New Issue
Block a user