kern

diff src/proc.h @ 43:5f6c5751ae05

- implemented clone_vmem
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 25 Jul 2011 11:29:02 +0300
parents e6de3c6015cb
children f65b348780e3
line diff
     1.1 --- a/src/proc.h	Sun Jul 24 18:29:24 2011 +0300
     1.2 +++ b/src/proc.h	Mon Jul 25 11:29:02 2011 +0300
     1.3 @@ -1,6 +1,7 @@
     1.4  #ifndef PROC_H_
     1.5  #define PROC_H_
     1.6  
     1.7 +#include <inttypes.h>
     1.8  #include "asmops.h"
     1.9  
    1.10  #define MAX_PROC	128
    1.11 @@ -10,6 +11,7 @@
    1.12  	uint32_t instr_ptr;
    1.13  	uint32_t stack_ptr;
    1.14  	uint32_t flags;
    1.15 +	uint32_t pgtbl_paddr;
    1.16  	/* TODO add FPU state */
    1.17  };
    1.18