Main Page | Directories | File List | Globals

panic.c

Go to the documentation of this file.
00001 /*
00002  * kernel_sys/panic.c
00003  *
00004  * Copyright (c) 2003-2004 Lukasz Dembinski <dembol@nasa.com.pl>
00005  * All Rights Reserved
00006  * 
00007  * Date:        2004/01
00008  * Author:      Lukasz Dembinski
00009  * Info:        panic.c core file
00010  * Contact:     mailto: <dembol@nasa.com.pl>
00011  *
00012  */
00013 
00014 #include <agnix/console.h>
00015 
00016 void forever_loop(void)
00017 {
00018     for(;;);
00019 }
00020 
00021 void kernel_panic(const char *text)
00022 {
00023     printk(text);
00024 
00025     forever_loop();
00026 }
Dokumentacje wygenerowano programem Doxygen 1.4.2 dla projektu Agnix