What is MUTEX?
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 |
Write down the syntax for all the loops in shell scripting.
Which scripting language is best for automation?
Is it possible to substitute "ls" command in the place of "echo" command?
How can I send a mail with a compressed file as an attachment?
What lives in a shell?
what is this line in the shell script do ?#!/bin/ksh
How can we find the process name from its process id?
whta is the use of "exec" command?
What is the use of break command?
What is a program shell?
What is the command to find out users on the system?
How do we delete all blank lines in a file?