我目前正在阅读APUE这本书。当我阅读有关 pthread 读取器/写入器锁定的章节时,我有一个关于它使用读取器/写入器锁定实现并发队列的问题。
struct queue {
struct job *q_head;
struct job *q_tail;
pthread_rwlock_t q_lock;
};
/*
* Remove the given job from a queue.
*/
void
job_remove(struct queue *qp, struct job *jp)
{
pthread_rwlock_wrlock(&qp->q_lock);
if (jp == qp->q_head) {
qp->q_head = jp->j_next;
if (qp->q_tail == jp)
qp->q_tail = NULL;
else
jp->j_next->j_prev = jp->j_prev;
} else if (jp == qp->q_tail) {
qp->q_tail = jp->j_prev;
jp->j_prev->j_next = jp->j_next;
} else {
jp->j_prev->j_next = jp->j_next;
jp->j_next->j_prev = jp->j_prev;
}
pthread_rwlock_unlock(&qp->q_lock);
}
我的问题是,此实现如何确保仅从链表中删除一次struct job
。据我了解,可以安排两个线程,以便它们就在行pthread_rwlock_wrlock
之前。然后,struct job *jp
可能会释放两次。如果struct job *
是动态分配的数据结构,这可能会导致双重释放错误。有什么建议吗?
您的代码中存在争用条件。 两个线程之间的队列可能会发生其他更改,从而在队列上获取写锁定,然后尝试删除同一节点。 可以删除其他节点,也可以添加其他节点。 因此,如果线程 A 删除节点,更改发生,然后线程 B 尝试再次删除同一节点,则队列可能已损坏。
代码需要信息来让它知道节点已被删除。
请参阅添加的注释以及修复争用条件的代码:
struct queue {
struct job *q_head;
struct job *q_tail;
pthread_rwlock_t q_lock;
};
/*
* Remove the given job from a queue.
*/
void
job_remove(struct queue *qp, struct job *jp)
{
// we assume here that jp is actually in the queue
pthread_rwlock_wrlock(&qp->q_lock);
// at this point, jp may no longer be in the queue,
// and in fact, the queue may be completely different.
// thus, any modification to the queue based on the
// assumption that jp is still part of the queue
// can lead to corruption of the queue
// so check if jp has been removed - we'll later set
// both j_next and j_prev to NULL after jp is
// removed from the queue - and if they're both
// NULL here that means another thread already
// removed jp from the queue
if ( !(jp->j_next) && !(jp->j_prev) ) {
// empty statement - jp is already removed
;
}
else if (jp == qp->q_head) {
qp->q_head = jp->j_next;
if (qp->q_tail == jp)
qp->q_tail = NULL;
else
jp->j_next->j_prev = jp->j_prev;
} // and this brace was missing in your posted code...
else if (jp == qp->q_tail) {
qp->q_tail = jp->j_prev;
jp->j_prev->j_next = jp->j_next;
} else {
jp->j_prev->j_next = jp->j_next;
jp->j_next->j_prev = jp->j_prev;
}
// make sure data in jp no longer refers to
// the queue - this will also tell any other
// thread that accesses jp that it's already
// been removed
jp->j_next = NULL;
jp->j_prev = NULL;
pthread_rwlock_unlock(&qp->q_lock);
}
您还需要检查 jp 如何获得 free()
d 或 delete
d。 不允许多个线程执行此操作。