Introduce packetqueue::stop which just sets the deleting flag and sends out a notify. The idea is to call it before clear().

This commit is contained in:
Isaac Connor
2022-05-12 10:50:04 -04:00
parent 3410d85302
commit 7ec97403d2
2 changed files with 6 additions and 0 deletions

View File

@@ -364,6 +364,11 @@ void PacketQueue::clearPackets(const std::shared_ptr<ZMPacket> &add_packet) {
return;
} // end voidPacketQueue::clearPackets(ZMPacket* zm_packet)
void PacketQueue::stop() {
deleting = true;
condition.notify_all();
}
void PacketQueue::clear() {
deleting = true;
condition.notify_all();