Is it possible to implement pthread_join() functioniality in freertos...?

ramanuday wrote on Friday, May 15, 2015:

I have 2 tasks in which Task A should wait until Task B exits(both tasks have respective functionalities). In linux this can be be achieved by pthread_join(). Is it possible to implement the pthread_join() functioniality in freertos…?

Regards.

davedoors wrote on Friday, May 15, 2015:

there is no equivalent although you could code your own using easily enough if the task being deleted knows it has to notify another task. That could be done by manually calling a sync primitive or perhaps with a trace macro.

Its rare for threads to get deleted in FreeRTOS applications. Perhaps if you describe the scenario sombody could suggest and alternative approach.