Difference between revisions of "8. Use of Mutex"
(Created page with "category: RTOS Tutorials ~~~~ ---- ==Intro== ==Code== <html> <script src="https://gist.github.com/Amritach/f122a117060bcd5de2b0.js"></script></html> {{DISQUS}}") |
m |
||
Line 4: | Line 4: | ||
==Intro== | ==Intro== | ||
+ | In last tutorial, we saw how to use semaphore and what is priority inversion. As we know, using mutex we can avoid extended priority inversion. Lets see how to do this. | ||
+ | Check the basics of mutex and API details [[RTOS Basics : Mutex|here]] | ||
==Code== | ==Code== |
Latest revision as of 17:57, 22 April 2015
Amruta (talk) 17:47, 22 April 2015 (IST)
Intro
In last tutorial, we saw how to use semaphore and what is priority inversion. As we know, using mutex we can avoid extended priority inversion. Lets see how to do this. Check the basics of mutex and API details here
Code