Answer Posted / 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 |
Post New Answer View All Answers
Tell me what is the need for having multibyte data input and output buffers in case of device ports?
How can you reduce memory requirements in embedded systems?
Tell me what is difference between binary semaphore and mutex?
Explain me can we use printf inside isr?
Scope of static variables?
Tell me what is null pointer and what is its use?
What is a 'volatile' variable?
Why is it better to use multi-threading polling then single threading model?
What are the essential components of embedded system?
Describe to me some bad code you've read or inherited lately.
What elements of oo design are most prone to abuse? How would you mitigate that?
Describe a software development life cycle that you've managed.
How does combination of functions reduce memory reuirement in embedded system?
What source control systems have you worked with?
Can you have constant volatile variables?