Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is deadlock? C++
What is deadlock? C++
✍: Guest
Deadlock is a situation when two or more processes prevent each other from running. Example: if T1 is holding x and waiting for y to be free and T2 holding y and waiting for x to be free deadlock happens.
2012-04-09, 4017👍, 0💬
Popular Posts:
What's the output of the following program? And why? #include main() { typedef union { int a; char b...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...
What is the purpose of the wait(), notify(), and notifyAll() methods? The wait(),notify(), and notif...
What is synchronization and why is it important? With respect to multithreading, synchronization is ...
What are the different accessibility levels defined in .NET ? Following are the five levels of acces...