Skip to content

Commit a80d307

Browse files
committed
Fix double unlock and double lock in multithread example.
1 parent 1aa02d1 commit a80d307

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

examples/multithread/multithread.c

+20-6
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,6 @@ static int multithread_test_init(MQTTCtx *mqttCtx)
272272
wm_SemFree(&mtLock);
273273
client_exit(mqttCtx);
274274
}
275-
if (wm_SemLock(&pingSignal) != 0) { /* default to locked */
276-
client_exit(mqttCtx);
277-
}
278275

279276
PRINTF("MQTT Client: QoS %d, Use TLS %d", mqttCtx->qos,
280277
mqttCtx->use_tls);
@@ -485,12 +482,16 @@ static int TestIsDone(int rc, MQTTCtx* mqttCtx)
485482
&& !MqttClient_IsMessageActive(&mqttCtx->client, NULL)
486483
#endif
487484
) {
488-
wm_SemUnlock(&mtLock);
489-
mqtt_stop_set();
490485
isDone = 1; /* done */
491486
}
487+
492488
wm_SemUnlock(&mtLock);
489+
490+
if (isDone) {
491+
mqtt_stop_set();
492+
}
493493
}
494+
494495
return isDone;
495496
}
496497

@@ -505,6 +506,13 @@ static void *waitMessage_task(void *param)
505506
MQTTCtx *mqttCtx = (MQTTCtx*)param;
506507
word32 startSec;
507508
word32 cmd_timeout_ms = mqttCtx->cmd_timeout_ms;
509+
int needsUnlock = 0;
510+
511+
if (wm_SemLock(&pingSignal) != 0) { /* default to locked */
512+
THREAD_EXIT(0);
513+
}
514+
515+
needsUnlock = 1;
508516

509517
/* Read Loop */
510518
PRINTF("MQTT Waiting for message...");
@@ -585,6 +593,7 @@ static void *waitMessage_task(void *param)
585593
/* Keep Alive handled in ping thread */
586594
/* Signal keep alive thread */
587595
wm_SemUnlock(&pingSignal);
596+
needsUnlock = 0;
588597
}
589598
else if (rc != MQTT_CODE_SUCCESS) {
590599
/* There was an error */
@@ -596,7 +605,10 @@ static void *waitMessage_task(void *param)
596605
} while (!mqtt_stop_get());
597606

598607
mqttCtx->return_code = rc;
599-
wm_SemUnlock(&pingSignal); /* wake ping thread */
608+
if (needsUnlock) {
609+
wm_SemUnlock(&pingSignal); /* wake ping thread */
610+
needsUnlock = 0;
611+
}
600612

601613
THREAD_EXIT(0);
602614
}
@@ -697,6 +709,8 @@ static void *ping_task(void *param)
697709
MqttClient_ReturnCodeToString(rc), rc);
698710
break;
699711
}
712+
713+
wm_SemUnlock(&pingSignal);
700714
} while (!mqtt_stop_get());
701715

702716
THREAD_EXIT(0);

0 commit comments

Comments
 (0)