kern

diff src/proc.h @ 52:fa65b4f45366

picking this up again, let's fix it
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 07 Aug 2011 06:42:00 +0300
parents b1e8c8251884
children 23abbeea4d5f
line diff
     1.1 --- a/src/proc.h	Mon Aug 01 06:45:29 2011 +0300
     1.2 +++ b/src/proc.h	Sun Aug 07 06:42:00 2011 +0300
     1.3 @@ -27,6 +27,12 @@
     1.4  	enum proc_state state;
     1.5  
     1.6  	int ticks_left;
     1.7 +
     1.8 +	/* extends of the process heap, increased by sbrk */
     1.9 +
    1.10 +	/* first page of the user stack, extends up to KMEM_START */
    1.11 +	int stack_start_pg;
    1.12 +
    1.13  	struct context ctx;
    1.14  
    1.15  	struct process *next, *prev;	/* for the scheduler queues */