kern

annotate src/klibc/assert.h @ 71:c7bd6ec7b946

changed test_proc to modify memory after the fork in order to try out copy-on-write, by pushing the result of getpid on the stack.
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 13 Oct 2011 05:22:35 +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_ */