Answer Posted / satchi
Mutex is a program object that allows multiple program
threads to share the same resource, such as file access,
but not simultaneously. When a program is started a mutex
is created woth a unique name. After this stage, any thread
that needs the resource must lock the mutex from other
threads while it is using the resource. the mutex is set to
unlock when the data is no longer needed or the routine is
finished.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What does chmod do?
How to calculate the number of passed arguments?
Write the syntax for "if" conditionals in linux?
How do scripts work?
What is $1 in shell scripting?
Why are there shells on the beach?
c program to implement unix/linux command to block the signal ctrl-c and ctrl-\ signal during the execution ls -l|wc -l
How to pass an argument to a script?
What does echo mean in scripting?
How do I open the shell in cmd?
Please give me example of " at command , contrab command " how to use
How to find duplicate record in file using shell script?
Which scripting language is best for automation?
What is the first line in a shell script?
Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.