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 |
What is the difference between a variable and value?
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.
What is bash command used for?
What is wc in shell script?
What is a scripting language simple definition?
How do you create a shortcut in linux?
Explain about sourcing commands?
Devise a script that takes file name as arguement(which must present in the current directory)and locates from your home directory tree all thpath names of its links.Then mail the list to self.
c program to display the information of given file similar to givan by the unix or linux command ls -l
write a shell script that accepts name from user and creates a directory by the path name, then creates a text file in that directory and stores in it, the data accepted from user till STOP, displays the no. of characters stored in the file.Program stops if directory name is null
Dear All, Can anybody tell me how to predefind no. of selected rows from a text file.
What are the 3 standard streams in linux?