What is mutex precisely used for?
Answers were Sorted based on User's Feedback
Answer / rohil
The mutex (mutually exclusion) variables are used thread
synchroniization and for protecting the shared memory(data
segment) when multiple writes occur
| Is This Answer Correct ? | 23 Yes | 0 No |
Answer / achal
The above is correct. To be more specific, a CPU might need
to access some hardware device say I2c interface. Now if 2
processes in running state try to acquire and use I2c for
some data transfer, it might create problems, when one of
them hasn't finished its operations with the device. So
whenever some process has to make use of I2C it should lock
upon the mutex object for I2c device. And after the
operation gets finished it unlocks the mutex. Now some
other process can use I2c by mutex lock.
Similarly mutex object can be used to safegaurd some other
device resources.
| Is This Answer Correct ? | 22 Yes | 4 No |
How does combination of functions reduce memory requirements in embedded systems?
What are recursive functions? Can we make them in line?
What does DMA address will deal with?
Tell me can structures be passed to the functions by value?
What is the difference between unit test and integration test?
What happens when recursive functions are declared inline?
What is difference between binary semaphore and mutex?
Can we use any function inside isr?
Tell me what are the functional requirements that are used in the embedded systems?
Tell me what is isr?
What software configuration management tools are you familiar working with?
What is endianness of a system and how do different systems communicate with each other?