It is needed to add closing session mutex process before vos_terminate().
Because, if the mutex created is not deleted and the pointer which contain the address of mutex structure not cleared, unusable mutex which is the first time value is reused.
Modified file : trdp_if.c function : tlc_terminate()
684 lines of below is added to the eye.
vos_mutexDelete(sSessionMutex); sSessionMutex = NULL
Thanks for the hint.
Log in to post a comment.
Modified
file : trdp_if.c
function : tlc_terminate()
684 lines of below is added to the eye.
vos_mutexDelete(sSessionMutex);
sSessionMutex = NULL
Last edit: Kazumasa Aiba 2015-03-11
Modified
file : trdp_if.c
function : tlc_terminate()
684 lines of below is added to the eye.
vos_mutexDelete(sSessionMutex);
sSessionMutex = NULL
Thanks for the hint.