repo.or.cz
/
thunix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up the warning messages
[thunix.git]
/
kernel
/
panic.c
blob
75cee0056753bfab073f2323f6ff012e2dac0287
1
#include <kernel.h>
2
3
void
panic
(
const char
*
s
)
4
{
5
printk
(
"Kernel panic: %s
\n
"
,
s
);
6
for
(;;)
7
;
8
}