@@ -272,9 +272,6 @@ static int multithread_test_init(MQTTCtx *mqttCtx)
272
272
wm_SemFree (& mtLock );
273
273
client_exit (mqttCtx );
274
274
}
275
- if (wm_SemLock (& pingSignal ) != 0 ) { /* default to locked */
276
- client_exit (mqttCtx );
277
- }
278
275
279
276
PRINTF ("MQTT Client: QoS %d, Use TLS %d" , mqttCtx -> qos ,
280
277
mqttCtx -> use_tls );
@@ -485,12 +482,16 @@ static int TestIsDone(int rc, MQTTCtx* mqttCtx)
485
482
&& !MqttClient_IsMessageActive (& mqttCtx -> client , NULL )
486
483
#endif
487
484
) {
488
- wm_SemUnlock (& mtLock );
489
- mqtt_stop_set ();
490
485
isDone = 1 ; /* done */
491
486
}
487
+
492
488
wm_SemUnlock (& mtLock );
489
+
490
+ if (isDone ) {
491
+ mqtt_stop_set ();
492
+ }
493
493
}
494
+
494
495
return isDone ;
495
496
}
496
497
@@ -505,6 +506,13 @@ static void *waitMessage_task(void *param)
505
506
MQTTCtx * mqttCtx = (MQTTCtx * )param ;
506
507
word32 startSec ;
507
508
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 ;
508
516
509
517
/* Read Loop */
510
518
PRINTF ("MQTT Waiting for message..." );
@@ -585,6 +593,7 @@ static void *waitMessage_task(void *param)
585
593
/* Keep Alive handled in ping thread */
586
594
/* Signal keep alive thread */
587
595
wm_SemUnlock (& pingSignal );
596
+ needsUnlock = 0 ;
588
597
}
589
598
else if (rc != MQTT_CODE_SUCCESS ) {
590
599
/* There was an error */
@@ -596,7 +605,10 @@ static void *waitMessage_task(void *param)
596
605
} while (!mqtt_stop_get ());
597
606
598
607
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
+ }
600
612
601
613
THREAD_EXIT (0 );
602
614
}
@@ -697,6 +709,8 @@ static void *ping_task(void *param)
697
709
MqttClient_ReturnCodeToString (rc ), rc );
698
710
break ;
699
711
}
712
+
713
+ wm_SemUnlock (& pingSignal );
700
714
} while (!mqtt_stop_get ());
701
715
702
716
THREAD_EXIT (0 );
0 commit comments