diff options
author | rtm <rtm> | 2006-07-12 09:10:25 +0000 |
---|---|---|
committer | rtm <rtm> | 2006-07-12 09:10:25 +0000 |
commit | 664324745e2257289f7a61e43892ce6e8b8ed9b7 (patch) | |
tree | 63a538ce874736cb262b83f7358157cfcc99d034 | |
parent | 4e8f237be819424f922399f8d121d9867b675541 (diff) | |
download | xv6-labs-664324745e2257289f7a61e43892ce6e8b8ed9b7.tar.gz xv6-labs-664324745e2257289f7a61e43892ce6e8b8ed9b7.tar.bz2 xv6-labs-664324745e2257289f7a61e43892ce6e8b8ed9b7.zip |
cvs add spinlock.h
fix race in schedule()
-rw-r--r-- | Notes | 7 | ||||
-rw-r--r-- | proc.c | 3 | ||||
-rw-r--r-- | spinlock.h | 6 | ||||
-rw-r--r-- | usertests.c | 4 |
4 files changed, 17 insertions, 3 deletions
@@ -126,3 +126,10 @@ in general, the table locks protect both free-ness and why can't i get a lock in console code? always triple fault lock code shouldn't call cprintf... +ide_init doesn't work now? +and IOAPIC: read from unsupported address + when running pre-empt user test + so maybe something wrong with clock interrupts + no! if one cpu holds lock w/ curproc0=, + then another cpu can take it, it looks like + a recursive acquire() @@ -148,7 +148,6 @@ scheduler(void) if(i < NPROC){ np->state = RUNNING; - release(&proc_table_lock); break; } @@ -159,6 +158,8 @@ scheduler(void) cpus[cpu()].lastproc = np; curproc[cpu()] = np; + release(&proc_table_lock); + // h/w sets busy bit in TSS descriptor sometimes, and faults // if it's set in LTR. so clear tss descriptor busy bit. np->gdt[SEG_TSS].sd_type = STS_T32A; diff --git a/spinlock.h b/spinlock.h new file mode 100644 index 0000000..ee0a26c --- /dev/null +++ b/spinlock.h @@ -0,0 +1,6 @@ +struct spinlock { + unsigned int locked; + struct proc *p; + int count; + unsigned locker_pc; +}; diff --git a/usertests.c b/usertests.c index 2f688ca..fa1b210 100644 --- a/usertests.c +++ b/usertests.c @@ -93,8 +93,8 @@ preempt() main() { puts("usertests starting\n"); - pipe1(); - //preempt(); + //pipe1(); + preempt(); while(1) ; |