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
What is difference between binary semaphore and mutex?
Tell me what are the qualifiers in c?
Mention what are the essential components of embedded system?
What's the difference between locking and lockless (optimistic and pessimistic) concurrency models?
How to create a child process in linux?
Tell me how are macros different from inline functions?
If your database was under a lot of strain, what are the first few things you might consider to speed it up?
What are the most common errors you've found in embedded systems?
What software languages have you used to design, develop, and debug software application interfaces?
If you've integrated new software in an existing system, tell us how you evaluated and identified the requirements for this new technology.
What value do daily builds, automated testing, and peer reviews add to a project? What disadvantages are there?
What are the languages used in embedded system?
Tell me what is the need for an infinite loop in embedded systems?
Why is it better to use multi-threading polling instead of a single threading model?
How are macros different from functions?