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:
When working with shared data in threading how do you implement
When working with shared data in threading how do you implement synchronization ?
✍: Guest
There are certain situtations that you need to be careful with when using threads. If two
threads (e.g. the main and any worker threads) try to access the same variable at the same
time, you'll have a problem. This can be very difficult to debug because they may not
always do it at exactly the same time. To avoid the problem, you can lock a variable
before accessing it. However, if the two threads lock the same variable at the same time,
you'll have a deadlock problem.
SyncLock xbr>
'Do something with xbr>
End SyncLock
2007-10-22, 5043👍, 0💬
Popular Posts:
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, ...
What is the result of using Option Explicit? When writing your C program, you can include files in t...
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM? CALL_FORM: start a new form and pa...
What is effort variance? Effort Variance = (Actual effort – Estimated Effort) / Estimated Effort.
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepa...