1
vote
1answer
39 views
What does .NET add to Windows/Linux processes and threads?
As far as I know, .NET uses Windows processes.
What extra state information & functionality does it add to information contained in Windows thread/process descriptors?
And what is different in …
4
votes
3answers
76 views
Creating Threaded callbacks in XS
EDIT: I have created a ticket for this which has data on an alternative to this way of doing things.
I have updated the code in an attempt to use MY_CXT's callback as gcxt was not storing across …
2
votes
5answers
166 views
What is the best way to thread work in c#?
What's the best way to thread work (methods) in c#?
For example:
Let's say I have a form and want to load data from db.
My form controls:
- dataGridView (to show data from DB),
- label …
1
vote
4answers
112 views
C# Asynchronous operation
Acctually I have hardtime in understanding BeginInvoke() and EndInvoke() pair.
class AsynchronousDemo
{
public delegate void DemoDelegate();
static void Main()
{
DemoDelegate d …
0
votes
2answers
44 views
Threading Web requests handled in Main?
I'm writing an application in C#, and I am creating multiple BackgroundWorker threads to grab information from webpages. Despite them being BackgroundWorkers, my GUI Form is becoming unresponsive.
…
0
votes
1answer
23 views
Best way to schedule deferred execution of method using ThreadPool?
I have a server application which needs to schedule the deferred execution of method(s). In other words, mechanism to run a method using a thread in ThreadPool after a certain period of time.
void …
0
votes
3answers
58 views
C# WaitCallBack - ThreadPool
What is the exact purpose of WaitCallback delegate ?
WaitCallback callback = new WaitCallback(PrintMessage);
ThreadPool.QueueUserWorkItem(callback,"Hello");
static void PrintMessage(object obj)
{
…
1
vote
2answers
49 views
My EventWaitHandle says “Access to the path is denied”, but its not
Quick summary with what I now know
I've got an EventWaitHandle that I created and then closed. When I try to re-create it with this ctor, an "Access to the path ... is denied" exception is thrown. …
0
votes
2answers
61 views
Using ThreadPool threads with long running ADO.NET queries. Is this scalable?
We are currently enhancing an ASP.NET app that performs quotes on a number of products.
At present the existing quote engine is basically a big stored procedure (2-3 secs per call) followed by a …
3
votes
2answers
69 views
Out of memory on _beginthreadex
I currently debug a multi threaded application, which runs without errors until some functions where called about 2000 times. After that the application stops responding, which I could track down to …
2
votes
3answers
233 views
Doesn’t the fact that Go and Java use User space thread mean that you can’t really take advantage of multiple core?
We've been talking about threads in my operating system class a lot lately and one question has come to my mind.
Since Go, (and Java) uses User-space thread instead of kernel threads, doesn't that …
0
votes
3answers
54 views
How to directly access the UI thread from the BackgroundWorker thread in WPF?
I'm creating a backup utility in WPF and have a general question about threading:
In the method backgroundWorker.DoWork(), the statement Message2.Text = "..." gives the error "The calling thread …
0
votes
7answers
90 views
Can a static class be instantiated more than once within a single process?
Can a single process with multiple threads cause a static class to be created more than once?
If I just need a simple construct can I use a static class, or do I have to resort to a singleton?
0
votes
1answer
17 views
Does AutoResetEvent.WaitOne() frees a slot in the thread pool?
I am trying to synchronize an asynchronous method. The main advantage of the async version is that it frees a slot in the thread pool. I would like to keep this advantage in my sync version. When I …
0
votes
4answers
106 views
Is this threading code doing what I think it is?
I have written the following code to perform some simultaneous HTTP posting and file archiving:
Dim t1 As New Threading.Thread(New Threading.ThreadStart(AddressOf ProcessNTSMessageQueue))
Dim t2 As …
