Click here to Skip to main content
15,895,142 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# locks and atomicity Pin
Ennis Ray Lynch, Jr.24-Jun-08 10:09
Ennis Ray Lynch, Jr.24-Jun-08 10:09 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango24-Jun-08 10:23
sponsorJudah Gabriel Himango24-Jun-08 10:23 
GeneralRe: C# locks and atomicity Pin
Ennis Ray Lynch, Jr.24-Jun-08 10:38
Ennis Ray Lynch, Jr.24-Jun-08 10:38 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango24-Jun-08 11:21
sponsorJudah Gabriel Himango24-Jun-08 11:21 
GeneralRe: C# locks and atomicity Pin
User 665824-Jun-08 10:34
User 665824-Jun-08 10:34 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango24-Jun-08 11:10
sponsorJudah Gabriel Himango24-Jun-08 11:10 
GeneralRe: C# locks and atomicity Pin
User 665824-Jun-08 11:21
User 665824-Jun-08 11:21 
GeneralRe: C# locks and atomicity Pin
Joe Woodbury24-Jun-08 10:56
professionalJoe Woodbury24-Jun-08 10:56 
I can see a very narrow circumstance where it will fail. The problem is that isWorking is not declared volatile, so you aren't guaranteed it will actually be set before OnDoSomethingCompletedAsync() is invoked. If the optimizer caches the value and writes it after the scope of the lock, you could have a problem IF the thread switch happens just before that instruction.

Try private volatile bool isWorking;


Anyone who thinks he has a better idea of what's good for people than people do is a swine.
- P.J. O'Rourke


GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango24-Jun-08 10:59
sponsorJudah Gabriel Himango24-Jun-08 10:59 
GeneralRe: C# locks and atomicity Pin
leppie24-Jun-08 20:01
leppie24-Jun-08 20:01 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango25-Jun-08 5:01
sponsorJudah Gabriel Himango25-Jun-08 5:01 
GeneralRe: C# locks and atomicity Pin
Frank Horn24-Jun-08 22:36
Frank Horn24-Jun-08 22:36 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango25-Jun-08 5:06
sponsorJudah Gabriel Himango25-Jun-08 5:06 
GeneralRe: C# locks and atomicity Pin
Frank Horn25-Jun-08 21:30
Frank Horn25-Jun-08 21:30 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango26-Jun-08 5:12
sponsorJudah Gabriel Himango26-Jun-08 5:12 
GeneralRe: C# locks and atomicity Pin
Frank Horn26-Jun-08 7:50
Frank Horn26-Jun-08 7:50 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango26-Jun-08 8:28
sponsorJudah Gabriel Himango26-Jun-08 8:28 
GeneralRe: C# locks and atomicity Pin
Frank Horn26-Jun-08 9:48
Frank Horn26-Jun-08 9:48 
GeneralRe: C# locks and atomicity Pin
Judah Gabriel Himango26-Jun-08 12:08
sponsorJudah Gabriel Himango26-Jun-08 12:08 
GeneralRe: C# locks and atomicity Pin
Frank Horn26-Jun-08 20:44
Frank Horn26-Jun-08 20:44 
QuestionGet Struct Element by string Pin
robert rodgers24-Jun-08 8:47
robert rodgers24-Jun-08 8:47 
AnswerRe: Get Struct Element by string Pin
Judah Gabriel Himango24-Jun-08 10:24
sponsorJudah Gabriel Himango24-Jun-08 10:24 
GeneralRe: Get Struct Element by string Pin
robert rodgers25-Jun-08 3:34
robert rodgers25-Jun-08 3:34 
GeneralRe: Get Struct Element by string Pin
robert rodgers25-Jun-08 3:42
robert rodgers25-Jun-08 3:42 
GeneralRe: Get Struct Element by string Pin
Judah Gabriel Himango25-Jun-08 4:55
sponsorJudah Gabriel Himango25-Jun-08 4:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.