mirror of
https://github.com/0Nera/BMOSP.git
synced 2025-01-10 14:52:18 +03:00
Отключены неисправные блоки кода
This commit is contained in:
parent
471ee3cde3
commit
08bc26c87f
@ -10,6 +10,8 @@
|
|||||||
#include <log.h>
|
#include <log.h>
|
||||||
#include <mem.h>
|
#include <mem.h>
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
|
||||||
static volatile uint64_t next_thread_id = 0;
|
static volatile uint64_t next_thread_id = 0;
|
||||||
static task_t *last_task = NULL;
|
static task_t *last_task = NULL;
|
||||||
static task_t *kernel_task = NULL;
|
static task_t *kernel_task = NULL;
|
||||||
@ -96,6 +98,8 @@ task_t *task_new_thread(void (*func)(void *), void *arg) {
|
|||||||
return new_task;
|
return new_task;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
void notask_switch( ) {
|
void notask_switch( ) {
|
||||||
asm volatile("nop");
|
asm volatile("nop");
|
||||||
}
|
}
|
||||||
@ -103,6 +107,8 @@ void notask_switch( ) {
|
|||||||
void task_init( ) {
|
void task_init( ) {
|
||||||
LOG("Потоки не инициализированы\n");
|
LOG("Потоки не инициализированы\n");
|
||||||
idt_set_int(32, notask_switch);
|
idt_set_int(32, notask_switch);
|
||||||
|
|
||||||
|
#if 0
|
||||||
return;
|
return;
|
||||||
uint64_t rsp;
|
uint64_t rsp;
|
||||||
uint64_t cr3;
|
uint64_t cr3;
|
||||||
@ -122,4 +128,5 @@ void task_init( ) {
|
|||||||
last_task = kernel_task;
|
last_task = kernel_task;
|
||||||
|
|
||||||
LOG("Потоки инициализированы\n");
|
LOG("Потоки инициализированы\n");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user