difference between semaphores and mutex?
Answer / selvakumar
"Mutexes are typically used to serialise access to a
section of re-entrant code that cannot be executed
concurrently by more than one thread. A mutex object only
allows one thread into a controlled section, forcing other
threads which attempt to gain access to that section to
wait until the first thread has exited from that section."
"A semaphore restricts the number of simultaneous users of
a shared resource up to a maximum number. Threads can
request access to the resource (decrementing the
semaphore), and can signal that they have finished using
the resource (incrementing the semaphore)."
| Is This Answer Correct ? | 15 Yes | 2 No |
What is indirection in c?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
What is wrong with this code?
What is ## preprocessor operator in c?
Apart from dennis ritchie who the other person who contributed in design of c language.
which will be first in c compiling ,linking or compiling ,debugging.
What is the difference between void main() and int main()?
who is the father of C Language?
20 Answers CTS, UST,
What is main return c?
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20