diff options
| -rw-r--r-- | src/cpu/irq.c | 2 | ||||
| -rw-r--r-- | src/sys/schedule.c | 1 | 
2 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c index 65300af..4947844 100644 --- a/src/cpu/irq.c +++ b/src/cpu/irq.c @@ -63,7 +63,7 @@ void c_irq_handler(void)  				add_thread(test_entry, 0, 2);  				timer_lock = 0;  			} -			*nexttime = *timer_chi + 30000000; +			*nexttime = *timer_chi + 8000000;  			*timer_cs = SYS_TIMER_SC_M0;  		}  	} diff --git a/src/sys/schedule.c b/src/sys/schedule.c index 9540d3d..287091c 100644 --- a/src/sys/schedule.c +++ b/src/sys/schedule.c @@ -202,7 +202,6 @@ void yield(void)  	//  thus any threads of the same priority can be run first  	unsigned char priority = rthread->priority;  	struct ThreadQueue* trq = &scheduler.ready[priority]; -	trq->read.entry->thread = 0;  	trq->read.entry = trq->read.entry->next;  	trq->write.entry->thread = rthread;  	trq->write.entry = trq->write.entry->next;  | 
