Skip to content

Commit 93505e7

Browse files
authored
remove duplicate CVAR_WAIT in connection listener (#453)
1 parent 031f962 commit 93505e7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/source/Ice/ConnectionListener.c

-3
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ STATUS connectionListenerRemoveConnection(PConnectionListener pConnectionListene
135135
!ATOMIC_LOAD_BOOL(&pConnectionListener->terminate) &&
136136
ATOMIC_LOAD_BOOL(&pConnectionListener->connectionListChanged) &&
137137
STATUS_SUCCEEDED(cvarWaitStatus)) {
138-
/* use longTimeout because connectionListenerReceiveDataRoutine should wake this up */
139-
CVAR_WAIT(pConnectionListener->removeConnectionComplete, pConnectionListener->lock, CONNECTION_AWAIT_CONNECTION_REMOVAL_TIMEOUT);
140138
cvarWaitStatus = CVAR_WAIT(pConnectionListener->removeConnectionComplete, pConnectionListener->lock, CONNECTION_AWAIT_CONNECTION_REMOVAL_TIMEOUT);
141139
/* CVAR_WAIT should never time out */
142140
if (STATUS_FAILED(cvarWaitStatus)) {
@@ -183,7 +181,6 @@ STATUS connectionListenerRemoveAllConnection(PConnectionListener pConnectionList
183181
!ATOMIC_LOAD_BOOL(&pConnectionListener->terminate) &&
184182
ATOMIC_LOAD_BOOL(&pConnectionListener->connectionListChanged) &&
185183
STATUS_SUCCEEDED(cvarWaitStatus)) {
186-
/* use longTimeout because connectionListenerReceiveDataRoutine should wake this up */
187184
cvarWaitStatus = CVAR_WAIT(pConnectionListener->removeConnectionComplete, pConnectionListener->lock, CONNECTION_AWAIT_CONNECTION_REMOVAL_TIMEOUT);
188185
/* CVAR_WAIT should never time out */
189186
if (STATUS_FAILED(cvarWaitStatus)) {

0 commit comments

Comments
 (0)