Fixed a bug that caused APCs to be "forgotten".
This commit is contained in:
parent
0f2f2b34fa
commit
b1c45b9424
|
@ -562,6 +562,8 @@ int thread_queue_apc( struct thread *thread, struct object *owner, void *func,
|
|||
queue->head = apc;
|
||||
wake_thread( thread );
|
||||
}
|
||||
else apc->prev->next = apc;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue