BSoD when creating threads
Posted
by Behrooz
on Stack Overflow
See other posts from Stack Overflow
or by Behrooz
Published on 2010-04-17T16:22:42Z
Indexed on
2010/04/17
16:33 UTC
Read the original article
Hit count: 201
I am trying to create +5 threads synchronously so there shouldn't be any concurrency error.
Code:
System.Threading.Thread t = new System.Threading.Thread(proc);
t.Start();//==t.BlueScreen();
t.Join();
Is darkness a feature ?
I am doing something wrong?
OS:Microsoft windows vista(unfortunately) x64
Language:C# 3.0|4.0
.Net version:3.5|4
© Stack Overflow or respective owner