syscall.c
Closed this issue · 1 comments
juice500ml commented
if(current->parent->waiting_tid==current->tid)
{
current->parent->return_status = status;
list_remove(¤t->childelem);
sema_up(¤t->parent->sema);
}
에서 list_remove(¤t->childelem);는 if문 밖으로 나와야 할 것 같다. 체크해야함.
juice500ml commented
done. lost in branching. reasons unknown.