kern

diff src/test_proc.S @ 56:0be4615594df

finally, runqueues, blocking, waking up, idle loop etc, all seem to work fine on a single user process... Next up: try forking another one :)
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 15 Aug 2011 06:17:58 +0300
parents b1e8c8251884
children 437360696883
line diff
     1.1 --- a/src/test_proc.S	Mon Aug 15 04:03:39 2011 +0300
     1.2 +++ b/src/test_proc.S	Mon Aug 15 06:17:58 2011 +0300
     1.3 @@ -10,7 +10,7 @@
     1.4  
     1.5  	/* --- sleep for 5 seconds --- */
     1.6  	movl $SYS_SLEEP, %eax
     1.7 -	movl $5, %ebx
     1.8 +	movl $3, %ebx
     1.9  	int $SYSCALL_INT
    1.10  
    1.11  	jmp test_proc