kern

view src/klibc/stdarg.h @ 55:88a6c4e192f9

Fixed most important task switching bugs. Now it seems that I can switch in and out of user space reliably.
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 15 Aug 2011 04:03:39 +0300
parents
children
line source
1 #ifndef STDARG_H_
2 #define STDARG_H_
4 /* Assumes that arguments are passed on the stack 4-byte aligned */
6 typedef int* va_list;
8 #define va_start(ap, last) ((ap) = (int*)&(last) + 1)
9 #define va_arg(ap, type) (*(type*)(ap)++)
10 #define va_end(ap)
12 #endif /* STDARG_H_ */