diff options
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/schedule.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; |