kern
annotate src/desc.h @ 72:3941e82b07f2
- implemented syscalls: exit, waitpid, getppid
- moved sys_whatever functions out of syscall.c into more reasonable files
- putting all the definitions that must be synced with userland to include/kdef.h
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 15 Oct 2011 07:45:56 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@11 | 1 #ifndef DESC_H_ |
nuclear@11 | 2 #define DESC_H_ |
nuclear@11 | 3 |
nuclear@11 | 4 #include <inttypes.h> |
nuclear@11 | 5 |
nuclear@11 | 6 typedef struct { |
nuclear@11 | 7 uint16_t d[4]; |
nuclear@11 | 8 } desc_t; |
nuclear@11 | 9 |
nuclear@11 | 10 #endif /* DESC_H_ */ |