From: Lars Op den Kamp Date: Tue, 7 Feb 2012 01:32:43 +0000 (+0100) Subject: cec: don't broadcast but wake one thread in CProtectedSocket::MarkReady() X-Git-Tag: upstream/2.2.0~1^2~35^2~140 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=008a816cb7d84e5981daaa6e1b313ce8b5ac722d cec: don't broadcast but wake one thread in CProtectedSocket::MarkReady() --- diff --git a/src/lib/platform/sockets/socket.h b/src/lib/platform/sockets/socket.h index 388bb2d..1d54a03 100644 --- a/src/lib/platform/sockets/socket.h +++ b/src/lib/platform/sockets/socket.h @@ -223,7 +223,7 @@ namespace PLATFORM CLockObject lock(m_mutex); if (m_iUseCount > 0) --m_iUseCount; - m_condition.Broadcast(); + m_condition.Signal(); } _Socket *m_socket;