kern
annotate src/klibc/assert.h @ 98:921a264297a4
merged the filesystem stuff
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 17 Apr 2014 17:03:30 +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_ */ |