summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-09 12:32:01 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-09 12:32:01 +0200
commit7b7c0a79787957902cb5a0f0b971dac087ed9955 (patch)
tree5509ff71c460366102bd431daa6524330755ae94 /src
parentbf5959115fb0f78f12f716e5a177d2c046868032 (diff)
downloadabaos-7b7c0a79787957902cb5a0f0b971dac087ed9955.tar.gz
abaos-7b7c0a79787957902cb5a0f0b971dac087ed9955.tar.bz2
fixed the vga_refresh bug. the problem is under optimization the
code gets so fast that we get races in the task refershing the VGA screen. For now we fix also high CPU usage in idle tasks with a 'kernel_halt' (well, later a yield or a more clever task scheduler should help). This is a hacky solution for now..
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
-rw-r--r--src/kernel/kernel.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 0586d4b..b44e310 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,6 +1,6 @@
CC := gcc
INCLUDES = -I. -Ilibc -Ihardware -Idrivers -Idrivers/hdi -Idrivers/hdi/ps2 -Idrivers/video -Ikernel -Igui
-CFLAGS := -std=c99 -m32 -march=i486 -ffreestanding -O0 -g -Werror $(INCLUDES)
+CFLAGS := -std=c99 -m32 -march=i486 -ffreestanding -O3 -g -Werror $(INCLUDES)
LD := ld
NASMFLAGS := -f elf32
NASM := nasm
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index dd61f45..f2210d6 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -321,6 +321,7 @@ static void handle_mouse_event( mouse_event_t *event, void *context )
static void funcA( void )
{
while( true ) {
+ kernel_halt( );
//~ printf( "A" );
//~ kernel_panic( "panic in task" );
}
@@ -329,6 +330,7 @@ static void funcA( void )
static void funcB( void )
{
while( true ) {
+ kernel_halt( );
//~ printf( "B" );
}
}
@@ -336,6 +338,7 @@ static void funcB( void )
static void refresh_screen( void )
{
while( true ) {
+ kernel_halt( );
switch( global_context.mode ) {
case MODE_TEXT:
// nothing to draw or refresh in text mode, the
@@ -355,7 +358,7 @@ static void refresh_screen( void )
interrupts_enable( );
break;
- }
+ }
}
}