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 |
What is a inode?
Explain the properties of a object oriented programming language.
Design a circuit to detect when 3 and only 3 bits are set out of 8 bits.(eg. o0101100)
What are the functional requirements that are used in the embedded systems?
Which parameters decide the size of data type for a processor?
Tell me what is the need for an infinite loop in embedded systems?
What are the most common errors you've found in embedded systems and how have you resolved them?
How do you identify hardware errors?
Describe the structure and contents of a design document, or a set of design documents, for a multi-tiered web application.
What is the significance of watchdog timer in es?
What is null pointer and what is its use?
How to implement a fourth order butter worth lp filter at 1 khz if sampling freuency is 8 khz?