We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi, I have a query that if I perform tsk_lock() before any function and then again I call tsk_lock() in that function,would that affect any Normal working of tsk_lock.For e.g.
tsk_lock() func1(); tsk_unlock(); func1() { tsk_lock(); <some working> tsk_unlock(); }
Is it correct? Thanks.