kern
annotate src/klibc/assert.h @ 75:8b21fe04ba2c
testing of the exit syscall
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 15 Oct 2011 08:07:09 +0300 |
parents | fa65b4f45366 |
children |
rev | line source |
---|---|
nuclear@52 | 1 #ifndef ASSERT_H_ |
nuclear@52 | 2 #define ASSERT_H_ |
nuclear@52 | 3 |
nuclear@52 | 4 #include "panic.h" |
nuclear@52 | 5 |
nuclear@52 | 6 #define assert(x) \ |
nuclear@52 | 7 if(!(x)) { \ |
nuclear@56 | 8 panic("Kernel assertion failed at " __FILE__ ":%d: " #x "\n", __LINE__); \ |
nuclear@52 | 9 } |
nuclear@52 | 10 |
nuclear@52 | 11 #endif /* ASSERT_H_ */ |