Tested for a too strict condition, we do need the correct tasktype AND an empty taskid, not the other way around

dynamic-accesslists
erdgeist 17 years ago
parent 74a5afbe82
commit e9d49af9fa

@ -194,7 +194,7 @@ ot_taskid mutex_workqueue_poptask( ot_tasktype *tasktype ) {
while( !taskid ) {
/* Skip to the first unassigned task this worker wants to do */
task = tasklist;
while( task && ( ( TASK_MASK & task->tasktype ) != *tasktype ) && ( task->taskid ) )
while( task && ( ( ( TASK_MASK & task->tasktype ) != *tasktype ) || task->taskid ) )
task = task->next;
/* If we found an outstanding task, assign a taskid to it

Loading…
Cancel
Save