Tagged Questions

0
votes
1answer
22 views

Why would I use “Both” COM threading model instead of “Free”?

According to this article if I register my COM object with either "Both" or "Free" threading model that object must be completely thread-safe. Specifically all accesses to global shared variables must …
0
votes
1answer
18 views

incorrect function being called on multiple fast calls to python’s threading.Thread()

I'm having some problems with launching threads from a list of functions. They are in a list because they are configuration-specific functions. I'm wrappering the functions so that I can store the …
0
votes
1answer
29 views

Is RLock a sensible default over Lock?

Dear all, the threading module in Python provides two kinds of locks: A common lock and a reentrant lock. It seems to me, that if I need a lock, I should always prefer the RLock over the Lock; mainly …
0
votes
2answers
21 views

How can I know when a thread ends on .Net Compact Framework?

Hello. I'm developing a Windows Mobile 5.0 and above application using .Net Compact Framework 2.0 SP2 and C#. How can I know when a thread ends? This is my code: System.Threading.Thread thread1 = …
0
votes
1answer
34 views

Threading.Timer invokes asynchronously many methods

Hi guys! Please help! I call a threading.timer from global.asax which invokes many methods each of which gets data from different services and writes it to files. My question is how do i make the …
4
votes
3answers
79 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 …
0
votes
2answers
64 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 …
1
vote
1answer
40 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 …
2
votes
5answers
172 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 …
0
votes
2answers
28 views

Windows Service cannot start a Thread in Win 2003 Server

Hi, My Windows service is able to launch threads (suing the ThreadStart delegate) in Win XP, but in Win 2003 Server it cant, it is not throwing an exception too ... the thread is simply not starting. …
0
votes
1answer
24 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 …
1
vote
2answers
51 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
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
25 views

WCF - starting a new thread asynchronously

Setup WCF Service running in IIS 6 Caching - Enterprise.Caching There's a business need to hold on to a message for a x amount of time(cache). Another process will remove it from the cache. We may …
2
votes
3answers
241 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 …

1 2 3 4 5 11 next
15 30 50 per page