forked from Imagelibrary/rtems
cpukit/posix/src/timertsr.c: Add _Assert()
CodeSonar flagged this as an empty if body. Upon analysis, it turned out to be an error that we think should never occur but if it did, there is nothing we could do about it. It would likely just indicate the thread was deleted before we got here. Adding the _Assert() at least will flag this if it ever occurs during a debug build and we can discuss what happened.
This commit is contained in:
committed by
Joel Sherrill
parent
90a8e42be4
commit
e106aa7380
@@ -73,7 +73,14 @@ void _POSIX_Timer_TSR(
|
||||
*/
|
||||
|
||||
if ( pthread_kill ( ptimer->thread_id, ptimer->inf.sigev_signo ) ) {
|
||||
/* XXX error handling */
|
||||
_Assert( FALSE );
|
||||
/*
|
||||
* TODO: What if an error happens at run-time? This should never
|
||||
* occur because the timer should be canceled if the thread
|
||||
* is deleted. This method is being invoked from the Clock
|
||||
* Tick ISR so even if we decide to take action on an error,
|
||||
* we don't have many options. We shouldn't shut the system down.
|
||||
*/
|
||||
}
|
||||
|
||||
/* After the signal handler returns, the count of expirations of the
|
||||
|
||||
Reference in New Issue
Block a user