aboutsummaryrefslogtreecommitdiff
path: root/src/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/boot.asm1
-rw-r--r--src/kernel/interrupts/isr.c2
-rw-r--r--src/kernel/kernel.c1
-rw-r--r--src/kernel/memory/alloc.h2
-rw-r--r--src/kernel/syscall/syscall.c1
-rw-r--r--src/kernel/tasks/process.c16
-rw-r--r--src/kernel/tasks/process.h1
7 files changed, 13 insertions, 11 deletions
diff --git a/src/kernel/boot.asm b/src/kernel/boot.asm
index 8e6761c..11f8a45 100644
--- a/src/kernel/boot.asm
+++ b/src/kernel/boot.asm
@@ -43,5 +43,4 @@ section .text
push eax
cli
call kernel_main
- cli
jmp $ \ No newline at end of file
diff --git a/src/kernel/interrupts/isr.c b/src/kernel/interrupts/isr.c
index b24529f..8bfb7bd 100644
--- a/src/kernel/interrupts/isr.c
+++ b/src/kernel/interrupts/isr.c
@@ -129,7 +129,7 @@ void fault_handler(struct regs *r)
warn("%s: Halting process %d", message, current_proc->pid);
memcpy(&current_proc->registers, r, sizeof(struct regs));
process_suspend(current_proc->pid);
- scheduler(r);
+ process_force_switch(r);
} else {
if (faulting_address != (u32)fb) {
panic("Page fault before multitasking started!");
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index d28987b..2d98179 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -69,6 +69,5 @@ void kernel_main(u32 magic, u32 multiboot_address, u32 esp)
syscalls_install();
kexec("/bin/init");
- halt_loop();
// asm ("div %0" :: "r"(0)); // Exception testing x/0
} \ No newline at end of file
diff --git a/src/kernel/memory/alloc.h b/src/kernel/memory/alloc.h
index 952b61c..a7b05bc 100644
--- a/src/kernel/memory/alloc.h
+++ b/src/kernel/memory/alloc.h
@@ -5,7 +5,7 @@
#include <stddef.h>
#include <stdint.h>
-#define KHEAP_MAGIC 0x04206969
+#define KHEAP_MAGIC 0xCAFEBABE
#define KHEAP_MAGIC2 0xDEADBEEF
#define KHEAP_END 0xFFFFDEAD
#define MEM_END 0x8000000
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
index c98707f..21738f8 100644
--- a/src/kernel/syscall/syscall.c
+++ b/src/kernel/syscall/syscall.c
@@ -35,6 +35,7 @@ void syscall_handler(struct regs *r)
r->edx, r->esi, r->edi);
r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi);
+ debug("Finished syscall");
}
void syscalls_install()
diff --git a/src/kernel/tasks/process.c b/src/kernel/tasks/process.c
index e1a6006..a361355 100644
--- a/src/kernel/tasks/process.c
+++ b/src/kernel/tasks/process.c
@@ -22,7 +22,7 @@ extern u32 stack_hold;
void scheduler(struct regs *regs)
{
- log("%d", quantum);
+ serial_put('.');
if (quantum == 0 || current_proc->state != PROC_RUNNING) {
quantum = 42; // For next process
} else {
@@ -54,6 +54,12 @@ void scheduler(struct regs *regs)
paging_switch_directory(current_proc->cr3);
}
+void process_force_switch(struct regs *regs)
+{
+ quantum = 0;
+ scheduler(regs);
+}
+
void process_init(struct process *proc)
{
log("Initializing process %d", pid);
@@ -71,8 +77,8 @@ void process_init(struct process *proc)
u32 process_spawn(struct process *process)
{
debug("Spawning process %d", process->pid);
- process->next = root->next;
- root->next = process;
+ process->next = current_proc->next;
+ current_proc->next = process;
process->state = PROC_RUNNING;
process->parent = current_proc;
@@ -209,8 +215,6 @@ u32 uexec(char *path)
if (proc == NULL)
return -1;
- proc->parent = current_proc;
- proc->gid = current_proc->pid;
process_spawn(proc);
log("Spawned");
return 0;
@@ -224,8 +228,6 @@ u32 uspawn(char *path)
if (proc == NULL)
return -1;
- proc->parent = current_proc;
- proc->gid = current_proc->pid;
process_spawn(proc);
log("Spawned");
return 0;
diff --git a/src/kernel/tasks/process.h b/src/kernel/tasks/process.h
index 4220d1e..c015df9 100644
--- a/src/kernel/tasks/process.h
+++ b/src/kernel/tasks/process.h
@@ -31,6 +31,7 @@ struct process {
};
void scheduler(struct regs *regs);
+void process_force_switch(struct regs *regs);
u32 process_spawn(struct process *process);
void process_suspend(u32 pid);