You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2021/06/08 16:31:52 UTC

[GitHub] [incubator-nuttx] patacongo edited a comment on issue #3868: Assertion failed at file:tls/tls_getset.c line: 59

patacongo edited a comment on issue #3868:
URL: https://github.com/apache/incubator-nuttx/issues/3868#issuecomment-856917238


   it does look like the main thread has exited or that the tg_pid is not valid for some reason.  The tg_pid is set when the task group is create and is never changed until the task group is de-allocated.  So until there is a wild write, I would expect the tg_pid to be valid.  The more likely thing is that the main thread has exited.
   
   That is really very likely under circumstances.  pthreads are not really canceled on exit() in deferred cancellation mode:  They may only be marked as deleted and will continue to run until the thread calls a cancellation point.  That could be some time later.  Meanwhile, the main thread could exit couldn't it.
   
   Or if a pthread is waiting on a semaphore and cancelled, but the OS logic ignores the ECANCELED error, then the pthread will never exit will never exit.
   
   In either case, in these states tg_pid will be valid, but nxsched_get_tcb() will fail.  Perhaps there is some kind of protection that I do not see, but I think this could happen in normal operation, couldn't it?  If so, then one solution would be to remove the assertion.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org