Update some comments

This commit is contained in:
Gregory Nutt 2014-09-30 17:45:42 -06:00
parent 125d9e3548
commit fc4efa2f10
1 changed files with 8 additions and 0 deletions

View File

@ -150,6 +150,14 @@ static void *simuart_thread(void *arg)
} }
} }
/* REVISIT: This is very weird and scary here. When sched_unlock()
* is called, we may do a lonjmp() style context switch meaning
* that the logic will be run running on this thread! (but with a
* different stack). So we do not get back here until the task
* sleeps again. I can't help but believe that that is going to
* be a problem someday.
*/
sched_unlock(); sched_unlock();
} }
} }