Can higher priority task give a mutex it does

rtel wrote on Friday, September 14, 2012:

Semaphores, other than mutex type semaphores, should not be too problematic, but I would be careful about giving a mutex from a task that does not own it.  Mutexes, unlike other semaphores, note the mutex holder in their structures to allow priority inheritance and disinheritance.

Regards.