active questions tagged threading - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:59:00Z http://stackoverflow.com/feeds/tag/threading http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850422/illegalmonitorstateexception 0 IllegalMonitorStateException BeefCake__beefcake 2009-12-04T23:48:01Z 2009-12-05T00:46:29Z <p>When running our program we get an exception of type java.lang.IllegalMonitorStateException. On Java6 API website, it says there is a constructor that gives a details about the exception: IllegalMonitorStateException(String s)</p> <p>How can we use this to get a better idea of where the bug is in our code? Is there anything else we can do (besides lots of debugging which we're currently doing) to pinpoint the function or line that failed?</p> http://stackoverflow.com/questions/1848326/what-are-the-compiler-clr-or-cpu-optimizations-to-be-aware-of-when-working-with 0 What are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization? Egil Hansen 2009-12-04T17:03:27Z 2009-12-04T17:14:08Z <p>As the title says, what are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization?</p> <p>I have read a little about the reordering of instructions to improve efficiency that could break things, and caching optimizations that will result in variables not being visible to other threads right away <a href="http://www.albahari.com/threading/part4.aspx" rel="nofollow">[0]</a>, but are there other (I sure there are) that I need to be aware of?</p> <p>Any links to recommended reading/blogs/articles/etc will be much appreciated.</p> <p>Thanks, Egil.</p> http://stackoverflow.com/questions/1842738/ruby-threading-deadlocks 0 Ruby threading deadlocks Patrick O'Doherty 2009-12-03T20:35:06Z 2009-12-04T13:09:29Z <p>I'm writing a project at the moment that involves running two parallel threads to pull data from different sources at regular intervals. I am using the Threads functionality in ruby 1.9 to do this but am unfortunately running up against deadlock problems. Also I have a feeling that the <code>Thread.join</code> method is causing the threads to queue rather than run in parallel.</p> <p>I'm new to multithreading programming and any advice would be greatly appreciated</p> <p>Cheers</p> <p>Patrick</p> <p>EDIT: The shared resource that both these threads are accessing is a mysql database which could be the problem. The deadlock arrises after a few iterations of these threads being run.</p> http://stackoverflow.com/questions/1842545/is-synchronized-needed-here 0 Is synchronized needed here Knife-Action-Jesus 2009-12-03T20:06:57Z 2009-12-04T08:21:52Z <p>I have a java applet. A class inside that applet is creating a thread to do some work, waiting 30 seconds for that work to complete, if its not completed in 30 secs it sets a Boolean to stop the thread. The wait and Boolean change are in a synchronized block, Is this necessary considering there is no other thread running aside from these 2. </p> <pre><code> System.out.println("Begin Start Session"); _sessionThread = new SessionThread(); _sessionThread.start(); synchronized (_sessionThread) { _sessionThread.wait(30000); _sessionThread._stopStartSession = true; } </code></pre> <p>Why couldn't I just do this instead.</p> <pre><code> System.out.println("Begin Start Session"); _sessionThread = new SessionThread(); _sessionThread.start(); _sessionThread.wait(30000); _sessionThread._stopStartSession = true; </code></pre> <p>SessionThread run method. Invokes a JNI method to call a dll to open a program window.</p> <pre><code>public void run() { try { startExtraSession(); } catch (Throwable t) { t.printStackTrace(); } notify(); } private native void openSessionWindow(String session_file); private void startExtraSession() { final String method_name = "startExtraSession"; String title = _sessionInfo._title; long hwnd = 0; openSessionWindow(_sessionInfo._configFile); try { //Look for a window with the predefined title name... while ((hwnd = nativeFindWindow(title)) == 0 &amp;&amp; !_stopStartSession) { Thread.sleep(500); } } catch(Throwable t) { t.printStackTrace(); } } </code></pre> <p><B>1. Is the synchronized really needed?</B> <BR> <B>2. Is there a better way to accomplish this aside from using threads?</B></p> http://stackoverflow.com/questions/1834919/error-cant-start-new-thread 1 error: can't start new thread Oduvan 2009-12-02T18:36:44Z 2009-12-03T18:46:52Z <p>Hello my friends.</p> <p>I have a site that runs with follow configuration:</p> <p>Django + mod-wsgi + apache</p> <p>In one of user's request, I send another HTTP request to another service, and solve this by httplib library of python.</p> <p>But sometimes this service don't get answer too long, and timeout for httplib doesn't work. So I creating thread, in this thread I send request to service, and join it after 20 sec (20 sec - is a timeout of request). This is how it works:</p> <pre><code>class HttpGetTimeOut(threading.Thread): def __init__(self,**kwargs): self.config = kwargs self.resp_data = None self.exception = None super(HttpGetTimeOut,self).__init__() def run(self): h = httplib.HTTPSConnection(self.config['server']) h.connect() sended_data = self.config['sended_data'] h.putrequest("POST", self.config['path']) h.putheader("Content-Length", str(len(sended_data))) h.putheader("Content-Type", 'text/xml; charset="utf-8"') if 'base_auth' in self.config: base64string = base64.encodestring('%s:%s' % self.config['base_auth'])[:-1] h.putheader("Authorization", "Basic %s" % base64string) h.endheaders() try: h.send(sended_data) self.resp_data = h.getresponse() except httplib.HTTPException,e: self.exception = e except Exception,e: self.exception = e </code></pre> <p>something like this...</p> <p>And use it by this function:</p> <pre><code>getting = HttpGetTimeOut(**req_config) getting.start() getting.join(COOPERATION_TIMEOUT) if getting.isAlive(): #maybe need some block getting._Thread__stop() raise ValueError('Timeout') else: if getting.resp_data: r = getting.resp_data else: if getting.exception: raise ValueError('REquest Exception') else: raise ValueError('Undefined exception') </code></pre> <p>And all works fine, but sometime I start catching this exception:</p> <pre><code>error: can't start new thread </code></pre> <p>at the line of starting new thread:</p> <pre><code>getting.start() </code></pre> <p>and the next and the final line of traceback is</p> <pre><code>File "/usr/lib/python2.5/threading.py", line 440, in start _start_new_thread(self.__bootstrap, ()) </code></pre> <p>And the answer is: What's happen?</p> <p>Thank's for all, and sorry for my pure English. :)</p> http://stackoverflow.com/questions/1838119/making-a-cross-thread-call-to-a-listview 0 Making a cross-thread call to a ListView James 2009-12-03T06:42:59Z 2009-12-03T07:05:49Z <p>Hi,</p> <p>I have a thread running in the background that periodically tries to update a ListView component, but every time it attempts to I get a "Cross-thread operation not valid: Control 'dlList' accessed from a thread other than the thread it was created on." error. I have used a delegate to try and solve this but it isn't fixing the problem. Is there something wrong with my code? I've also tried Invoke instead of BeginInvoke but same issue.</p> <pre><code> delegate void updateListItemDelegate(string tag, ListViewItem lv); private void updateListItem(string tag, ListViewItem lv) { if (this.dlList.InvokeRequired) { this.dlList.BeginInvoke(new updateListItemDelegate(updateListItem),tag,lv); return; } else { int index = -1; foreach (ListViewItem x in dlList.Items) { if (x.Tag.ToString() == tag) index = x.Index; } if (index != -1) { dlList.Items[index].SubItems[1] = lv.SubItems[1]; dlList.Items[index].SubItems[3] = lv.SubItems[3]; } } } </code></pre> <p>Called via:</p> <pre><code> updateListItem(x.url, x.details); </code></pre> http://stackoverflow.com/questions/1824397/why-would-i-use-both-com-threading-model-instead-of-free 1 Why would I use "Both" COM threading model instead of "Free"? sharptooth 2009-12-01T06:41:03Z 2009-12-01T20:55:00Z <p>According to <a href="http://www.codeguru.com/cpp/com-tech/activex/apts/article.php/c5533." rel="nofollow">this article</a> 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 be synchronized and all accesses to member variables must also be synchronized. That's a lot of effort.</p> <p>Now I understand that being able to register my object as using "Free" threading model is advantageous and might be worth paying the price of making it completely thread-safe. But why would I want to do all the same and register my object using "Both" threading model instead? What would be the advantage? How do I choose between "Both" and "Free"?</p> http://stackoverflow.com/questions/1825435/is-an-event-running-in-another-thread-net-compact-framework 0 Is an Event running in another thread? (.Net Compact Framework). VansFannel 2009-12-01T10:57:51Z 2009-12-01T11:04:36Z <p>Hello!</p> <p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> with <strong>.Net Compact Framework 2.0 SP2</strong> and <strong>C#</strong>.</p> <p>when I try to access the control's width on a method that handles an event it throws me the following exception:</p> <p>Control.Invoke must be used to interact with controls created on a separate thread.</p> <p>Is this method running in another thread?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1823493/incorrect-function-being-called-on-multiple-fast-calls-to-pythons-threading-thre 1 incorrect function being called on multiple fast calls to python's threading.Thread() Mike Miller 2009-12-01T01:27:11Z 2009-12-01T01:51:10Z <p>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 results of the functions in 'self', but something is going wrong in a non-threadsafe way that I get the right number of threads started, but some instances aren't the right function. Here's the example code:</p> <pre><code>import threading, time class runParallelTest(): def __init__(self): pass def runList(self, functionList): threadList = [] for functionListIndex in range(0, len(functionList)): newThread = threading.Thread(target=lambda:self._run_parallel_job(functionList[functionListIndex])) newThread.start() threadList.append(newThread) # sleep delay that makes it all work fine. #time.sleep(2) # We wait for all the threads to complete and if any of them # doesn't we report a failure. for thread in threadList: thread.join(3600*24) # 1 day better be enough if thread.isAlive() == True: raise Exception("thread.isAlive==True") def _run_parallel_job(self, function): results = function() # store the results in a threadsafe way in self # (I promise I'm using semaphores) def f(x): print "f(%d) run" % x return x if __name__ == '__main__': rp = runParallelTest() functionList = [ lambda:f(0), lambda:f(1), lambda:f(2), lambda:f(3), lambda:f(4), lambda:f(5), lambda:f(6), lambda:f(7), ] rp.runList(functionList) </code></pre> <p>When I run, I see things like this:</p> <pre><code>&gt; python thread_problem.py f(0) run f(1) run f(2) run f(4) run f(5) run f(5) run f(6) run f(7) run &gt; </code></pre> <p>While I expect different orders in the prints, I think I should see the numbers 0-7 with no repeats, but I don't. If I add the time.sleep(2), the problem magically goes away, but I'd really like to understand why it doesn't work the way I think it should.</p> <p>Thanks a bunch!</p> http://stackoverflow.com/questions/1822541/is-rlock-a-sensible-default-over-lock 0 Is RLock a sensible default over Lock? Bernhard Kausler 2009-11-30T21:32:42Z 2009-11-30T22:39:46Z <p>Dear all,</p> <p>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 to prevent deadlock situations.</p> <p>Besides that, I see two points, when to prefer a Lock over a RLock:</p> <ul> <li>RLock has a more complicated internal structure and may therefore have worse performance.</li> <li>Due to some reason, I want to prevent a thread recursing through the lock.</li> </ul> <p>Is my reasoning correct? Can you point out other aspects?</p> http://stackoverflow.com/questions/1821346/how-can-i-know-when-a-thread-ends-on-net-compact-framework 0 How can I know when a thread ends on .Net Compact Framework? VansFannel 2009-11-30T17:57:21Z 2009-11-30T18:02:37Z <p>Hello.</p> <p>I'm developing a <strong>Windows Mobile 5.0 and above</strong> application using <strong>.Net Compact Framework 2.0 SP</strong>2 and <strong>C#</strong>.</p> <p>How can I know when a thread ends?</p> <p>This is my code:</p> <pre><code>System.Threading.Thread thread1 = new System.Threading.Thread(() =&gt; RetreiveSoMuchData(ID)); thread1.Start(); </code></pre> <p>Thank you.</p> http://stackoverflow.com/questions/1815573/threading-timer-invokes-asynchronously-many-methods 0 Threading.Timer invokes asynchronously many methods Dimitar 2009-11-29T13:40:05Z 2009-11-29T13:55:17Z <p>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 methods to be invoked on a regular basis let's say 5 mins?</p> <p>What i do is: in Global.asax I declare a timer</p> <pre><code>protected void Application_Start() { TimerCallback timerDelegate = new TimerCallback(myMainMethod); Timer mytimer = new Timer(timerDelegate, null, 0, 300000); Application.Add("timer", mytimer); } </code></pre> <p>the declaration of myMainMethod looks like this:</p> <pre><code>public static void myMainMethod(object obj) { MyDelegateType d1 = new MyDelegateType(getandwriteServiceData1); d1.BeginInvoke(null, null); MyDelegateType d2 = new MyDelegateType(getandwriteServiceData2); d2.BeginInvoke(null, null); } </code></pre> <p>this approach works fine but it invokes myMainMethod every 5 mins. What I need is the method to be invoked 5 mins after all the data is retreaved and written to files on the server.</p> <p>How do I do that?</p> http://stackoverflow.com/questions/1791114/creating-threaded-callbacks-in-xs 4 Creating Threaded callbacks in XS kthakore 2009-11-24T16:15:46Z 2009-11-27T20:48:54Z <p>EDIT: I have created a <a href="http://sdlperl.ath.cx/projects/SDLPerl/ticket/63" rel="nofollow">ticket</a> for this which has data on an alternative to this way of doing things. </p> <p>I have <a href="http://github.com/kthakore/SDL%5Fperl/commit/e5aede73e86d54da85f621790492344de47f0580" rel="nofollow">updated the code</a> in an attempt to use MY_CXT's callback as gcxt was not storing across threads. However this segfaults at ENTER.</p> <pre><code>#include "EXTERN.h" #include "perl.h" #include "XSUB.h" #ifndef aTHX_ #define aTHX_ #endif #ifdef USE_THREADS #define HAVE_TLS_CONTEXT #endif /* For windows */ #ifndef SDL_PERL_DEFINES_H #define SDL_PERL_DEFINES_H #ifdef HAVE_TLS_CONTEXT PerlInterpreter *parent_perl = NULL; extern PerlInterpreter *parent_perl; #define GET_TLS_CONTEXT parent_perl = PERL_GET_CONTEXT; #define ENTER_TLS_CONTEXT \ PerlInterpreter *current_perl = PERL_GET_CONTEXT; \ PERL_SET_CONTEXT(parent_perl); { \ PerlInterpreter *my_perl = parent_perl; #define LEAVE_TLS_CONTEXT \ } PERL_SET_CONTEXT(current_perl); #else #define GET_TLS_CONTEXT /* TLS context not enabled */ #define ENTER_TLS_CONTEXT /* TLS context not enabled */ #define LEAVE_TLS_CONTEXT /* TLS context not enabled */ #endif #endif #include &lt;SDL.h&gt; #define MY_CXT_KEY "SDL::Time::_guts" XS_VERSION typedef struct { void* data; SV* callback; Uint32 retval; } my_cxt_t; static my_cxt_t gcxt; START_MY_CXT static Uint32 add_timer_cb ( Uint32 interval, void* param ) { ENTER_TLS_CONTEXT dMY_CXT; dSP; int back; ENTER; //SEGFAULTS RIGHT HERE! SAVETMPS; PUSHMARK(SP); XPUSHs(sv_2mortal(newSViv(interval))); PUTBACK; if (0 != (back = call_sv(MY_CXT.callback,G_SCALAR))) { SPAGAIN; if (back != 1 ) Perl_croak (aTHX_ "Timer Callback failed!"); MY_CXT.retval = POPi; } else { Perl_croak(aTHX_ "Timer Callback failed!"); } FREETMPS; LEAVE; LEAVE_TLS_CONTEXT dMY_CXT; return MY_CXT.retval; } MODULE = SDL::Time PACKAGE = SDL::Time PREFIX = time_ BOOT: { MY_CXT_INIT; } SDL_TimerID time_add_timer ( interval, cmd ) Uint32 interval void *cmd PREINIT: dMY_CXT; CODE: MY_CXT.callback=cmd; gcxt = MY_CXT; RETVAL = SDL_AddTimer(interval,add_timer_cb,(void *)cmd); OUTPUT: RETVAL void CLONE(...) CODE: MY_CXT_CLONE; </code></pre> <p>This segfaults as soon as I go into ENTER for the callback.</p> <pre><code>use SDL; use SDL::Time; SDL::init(SDL_INIT_TIMER); my $time = 0; SDL::Timer::add_timer(100, sub { $time++; return $_[0]} ); sleep(10); print "Never Prints"; </code></pre> <p>Output is</p> <pre><code>$ </code></pre> <p>it should be </p> <pre><code>$ Never Prints </code></pre> http://stackoverflow.com/questions/1753946/using-threadpool-threads-with-long-running-ado-net-queries-is-this-scalable 0 Using ThreadPool threads with long running ADO.NET queries. Is this scalable? spooner 2009-11-18T05:59:21Z 2009-11-27T08:10:21Z <p>We are currently enhancing an ASP.NET app that performs quotes on a number of products.</p> <p>At present the existing quote engine is basically a big stored procedure (2-3 secs per call) followed by a small amount of business logic that runs after the procedure call.</p> <p>We are looking into multi-threading the call to each product in order to speed up a set of quotes. </p> <p>Our current approach is to encapsulate each product quote work in a ThreadPool thread. This seems to perform much better, but I'm a little concerned that though it's performing well with a small number of users, will it scale well in a production environment?</p> <p>Please note at present we are not using async ADO.NET methods.</p> <p>Note: Our code that calls the ThreadPool has a throttle that queues requests so we can only use a configurable amount of threads from the ThreadPool at one time. We also don't need to wait for the quote results on the same page, we allow the user to progress and check for updates (a quote results page uses AJAX to check for results).</p> <p>Further note: The preferred solution would be to use a message queue as the quote service is a one-way operation. However, the timescales for the project didn't provide us time to do this.</p> <p>In the meantime we are going to revise the implementation to use the async methods of ADO.NET (as that is where all the long running aspect of the process is) saving the need to use ThreadPool threads.</p> http://stackoverflow.com/questions/1805203/what-does-net-add-to-windows-linux-processes-and-threads 2 What does .NET add to Windows/Linux processes and threads? Misha 2009-11-26T19:01:35Z 2009-11-26T21:08:17Z <p>As far as I know, .NET uses Windows processes.</p> <p>What extra state information &amp; functionality does it add to information contained in Windows thread/process descriptors?</p> <p>And what is different in Linux (on Mono)?</p> http://stackoverflow.com/questions/1779035/what-is-the-best-way-to-thread-work-in-c 2 What is the best way to thread work in c#? Jooj 2009-11-22T15:29:25Z 2009-11-25T22:14:37Z <p>What's the best way to thread work (methods) in c#? </p> <p>For example: </p> <p>Let's say I have a form and want to load data from db.</p> <pre><code>My form controls: - dataGridView (to show data from DB), - label (loading status) and - button (start loading). </code></pre> <p>When I click the button my form is frozen until the task is done. Also the loading status does not change until task is done. I think async threading would be the answer?</p> <p>So my question: what's the best way to handle this? I know there is a lot stuff about Threading, but what's the difference between them and how do you make it thread safe?</p> <p>How do you solve this kind of problems?</p> <p>Best Regards.</p> http://stackoverflow.com/questions/1720691/windows-service-cannot-start-a-thread-in-win-2003-server 0 Windows Service cannot start a Thread in Win 2003 Server TB 2009-11-12T08:13:54Z 2009-11-25T13:27:55Z <p>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.</p> <p>I made a testing Windows Service which have the same code in the (OnStart) event handler and it worked both on Win XP and Win 2003 Server, that is driving me crazy, I dont know what is wrong with my original service, why it cant start the thread.</p> <p>here is the code in both my Win Service with the problem and in the testing Win Service which worked just fine:</p> <pre><code> private Thread trd; StreamWriter sw; int i = 0; protected override void OnStart(string[] args) { // TODO: Add code here to start your service. sw = new StreamWriter("c:\\TestingService.txt", true); trd = new Thread(new ThreadStart(this.LoopingThread)); trd.IsBackground = false; trd.Priority = ThreadPriority.Highest; trd.Start(); } protected override void OnStop() { // TODO: Add code here to perform any tear-down necessary to stop your service. } private void LoopingThread() { while (i &lt; 100) { lock (sw) { sw.WriteLine("hello from thread i="+i.ToString()); sw.Flush(); } i++; Thread.Sleep(1000); } } </code></pre> <p>this code is "exactly" identical on both Win Services. my Original Service (which have the problem) got many references to other DLLs, and its "Using" list is:</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.ServiceProcess; using System.Text; using System.IO; using System.Xml; using System.Security.Principal; using System.Reflection; using System.Threading; using System.Management; </code></pre> <p>and other using statements that is related to some confidential DLLs (3rd parties) but I am not actually creating any object ... the effective code is just what I posted up.</p> <p>I cant figure out why my Win Service cant launch Threads on Win 2003 Server</p> http://stackoverflow.com/questions/1796232/best-way-to-schedule-deferred-execution-of-method-using-threadpool 0 Best way to schedule deferred execution of method using ThreadPool? Hemant 2009-11-25T11:09:11Z 2009-11-25T11:19:44Z <p>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.</p> <pre><code>void ScheduleExecution (int delay, Action someMethod){ //How to implement this??? } //At some other place //MethodX will be executed on a thread in ThreadPool after 5 seconds ScheduleExecution (5000, MethodX); </code></pre> <p>Please suggest an efficient mechanism to achieve above. I would prefer to avoid frequently creating new objects since above activity is likely to happen A LOT on server. Also the accuracy of call is important, i.e. while MethodX being executed after 5200 msec is fine but being executed after 6000 msec is a problem.</p> <p>Thanks in advance...</p> http://stackoverflow.com/questions/1784392/my-eventwaithandle-says-access-to-the-path-is-denied-but-its-not 1 My EventWaitHandle says "Access to the path is denied", but its not Allen 2009-11-23T16:43:31Z 2009-11-25T07:32:08Z <h2>Quick summary with what I now know</h2> <p>I've got an <code>EventWaitHandle</code> that I created and then closed. When I try to re-create it with <strong><a href="http://msdn.microsoft.com/en-us/library/z4c9z2kt.aspx" rel="nofollow">this ctor</a></strong>, an "Access to the path ... is denied" exception is thrown. This exception is rare, most of the times it just re-creates the <code>EventWaitHandle</code> just fine. With the answer posted below (by me), I'm able to successfully call <code>EventWaitHandle.OpenExisting</code> and continue on in the case that an exception was thrown, however, the ctor for <code>EventWaitHandle</code> should have done this for me, right? Isn't that what the <a href="http://msdn.microsoft.com/en-us/library/z4c9z2kt.aspx" rel="nofollow"><strong>out parameter</strong></a>, <code>createdNew</code> is for?</p> <p><hr></p> <h2>Initial question</h2> <p>I've got the following architecture, a windows service and a web service on the same server. The web service tells the windows service that it has to do work by opening and setting the wait handle that the windows service is waiting on.</p> <p>Normally everything is flawless and I'm able to start / stop the windows service without any issue popping up. However, some times when I stop the web service and then start it up again, it will be completely unable to create the wait handle, breaking the whole architecture. </p> <p>I specifically need to find out what is breaking the event wait handle and stop it. When the wait handle "breaks", I have to reboot windows before it will function properly again and thats obviously not ideal.</p> <h2>UPDATE: Exception thrown &amp; Log of Issue</h2> <p>I rebooted the windows service while the web service was doing work in hopes of causing the issue and it did! Some of the class names have been censored for corporate anonymity</p> <pre><code>12:00:41,250 [7] - Stopping execution due to a ThreadAbortException System.Threading.ThreadAbortException: Thread was being aborted. at System.Threading.Thread.SleepInternal(Int32 millisecondsTimeout) at OurCompany.OurProduct.MyClass.MyClassCore.MonitorRequests() 12:00:41,328 [7] - Closing Event Wait Handle 12:00:41,328 [7] - Finally block reached 12:00:42,781 [6] - Application Start 12:00:43,031 [6] - Creating EventWaitHandle: Global\OurCompany.OurProduct.MyClass.EventWaitHandle 12:00:43,031 [6] - Creating EventWaitHandle with the security entity name of : Everyone 12:00:43,078 [6] - Unhandled Exception System.UnauthorizedAccessException: Access to the path 'Global\OurCompany.OurProduct.MyClass.EventWaitHandle' is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.Threading.EventWaitHandle..ctor(Boolean initialState, EventResetMode mode, String name, Boolean&amp; createdNew, EventWaitHandleSecurity eventSecurity) at OurCompany.OurProduct.MyClassLibrary.EventWaitHandleFactory.GetNewWaitHandle(String handleName, String securityEntityName, Boolean&amp; created) at OurCompany.OurProduct.MyClassLibrary.EventWaitHandleFactory.GetNewEventWaitHandle() at OurCompany.OurProduct.MyClass.MyClassCore..ctor() </code></pre> <p><strong>Rough timeline:</strong></p> <ul> <li><p>11:53:09,937: The last thread on the web service to open that existing wait handle, COMPLETED its work (as in terminated connection with the client)</p></li> <li><p>12:00:30,234: The web service gets a new connection, not yet using the wait handle. The thread ID for this connection is the same as the thread ID for the last connection at 11:53</p></li> <li><p>12:00:41,250: The windows service stops</p></li> <li><p>12:00:42,781: The windows service starts up</p></li> <li><p>12:00:43,078: The windows service finished crashing</p></li> <li><p>12:00:50,234: The web service was actually able to open the wait handle call Set() on it without any exception thrown etc.</p></li> <li><p>12:02:00,000: I tried rebooting the windows service, same exception</p></li> <li><p>12:36:57,328: After arbitrarily waiting 36 minutes, I was able to start the windows service up without a full system reboot. </p></li> </ul> <p><hr></p> <h2><strong>Windows Service Code</strong></h2> <p>Initialization:</p> <pre><code>// I ran into security issues so I open the global EWH // and grant access to Everyone var ewhSecurity = new EventWaitHandleSecurity(); ewhSecurity.AddAccessRule( new EventWaitHandleAccessRule( "Everyone", EventWaitHandleRights.Synchronize | EventWaitHandleRights.Modify, AccessControlType.Allow)); this.ewh = new EventWaitHandle( false, EventResetMode.AutoReset, @"Global\OurCompany.OurProduct.MyClass.EventWaitHandle", out created, ewhSecurity); // the variable "created" is logged </code></pre> <p>Utilization:</p> <pre><code>// wait until the web service tells us to loop again this.ewh.WaitOne(); </code></pre> <p>Disposal / closing:</p> <pre><code>try { while (true) { // entire service logic here } } catch (Exception e) { // should this be in a finally, instead? if (this.ewh != null) { this.ewh.Close(); } } </code></pre> <p><hr></p> <h2><strong>Web Service Code</strong></h2> <p>Initialization:</p> <pre><code>// NOTE: the wait handle is a member variable on the web service this.existing_ewh = EventWaitHandle.OpenExisting( @"Global\OurCompany.OurProduct.MyClass.EventWaitHandle"); </code></pre> <p>Utilization:</p> <pre><code>// wake up the windows service this.existing_ewh.Set(); </code></pre> <p>Since the <code>EventWaitHandle</code> is a member variable on the web service, I don't have any code that specifically closes it. Actually, the only code that interacts with the <code>EventWaitHandle</code> on the web service is posted above.</p> <p><hr></p> <p>Looking back, I should probably have put the <code>Close()</code> that is in the <code>catch</code> block, in a <code>finally</code> block instead. I probably should have done the same for the web service but I didn't think that it was needed.</p> <p>At any rate, can anyone see if I'm doing anything specifically wrong? Is it crucially important to put the close statements within a finally block? Do I need to manually control the <code>Close()</code> of the <code>existing_ewh</code> on the web service?</p> <p>Also, I know this is a slightly complex issue so let me know if you need any additional info, I'll be monitoring it closely and add any needed information or explanations.</p> <p>Reference material</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.security.accesscontrol.eventwaithandlesecurity.aspx" rel="nofollow">EventWaitHandleSecurity Class</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.security.accesscontrol.eventwaithandleaccessrule.aspx" rel="nofollow">EventWaitHandleAccessRule Class</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.threading.eventwaithandle.aspx" rel="nofollow">EventWaitHandle Class</a></li> </ul> http://stackoverflow.com/questions/1792713/threading-web-requests-handled-in-main 0 Threading Web requests handled in Main? Matt 2009-11-24T20:28:41Z 2009-11-24T23:20:53Z <p>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. </p> <p>When I am debugging, I pause when the program goes unresponsive, and I can see that I am in the Main Thread, and I am paused on the webpage fetching method. This method is only called from new threads, though, so I can’t figure out why I would be there in the Main Thread. </p> <p>Does this make any sense? What can I do to make sure the web requests are only being handled in their respective threads?</p> <p><strong>EDIT: some code and explanation</strong></p> <p>I am processing a large list of addresses. Each thread will be processing one or more addresses. I can choose how many threads I want to create (I keep it modest :))</p> <pre><code>//in “Controller” class public void process() { for (int i = 1; i &lt;= addressList.Count &amp;&amp; i&lt;= numthreads; i++) { BackgroundWorker bw = new BackgroundWorker(); bw.DoWork += doWork; bw.RunWorkerAsync((object)i); } } public void doWork(object sender, DoWorkEventArgs e) { //create an object that has the web fetching method, call it WorkObject //WorkObject keeps a reference to Controller. //When it is done getting information, it will send it to Controller to print //generate a smaller list of addresses to work on, using e.Argument (should be 'i' from the above 'for' loop) WorkObject.workingMethod() } </code></pre> <p>When WorkObject is created, it uses “i” to know what thread number it is. It will use this to get a list of web addresses to get information from (from a larger list of addresses which is shared by the main Form, the Controller, and each of the WorkObjects – each thread will process a smaller list of addresses). As it iterates over the list, it will call the “getWebInfo” method. </p> <pre><code>//in “WorkObject” class public static WebRequest request; public void workingMethod() { //iterate over the small list of addresses. For each one, getWebInfo(address) //process the info a bit...then myController.print() //note that this isn’t a simple “for” loop, it involves event handlers and threading //Timers to make sure one is done before going on to the next } public string getWebInfo (string address) { request = WebRequest.Create(address); WebResponse response = request.GetResponse(); StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8); string content = reader.ReadToEnd(); return content; } </code></pre> http://stackoverflow.com/questions/1764658/wcf-starting-a-new-thread-asynchronously 0 WCF - starting a new thread asynchronously cbass 2009-11-19T16:34:29Z 2009-11-24T19:22:09Z <p>Setup WCF Service running in IIS 6 Caching - Enterprise.Caching</p> <p>There's a business need to hold on to a message for a x amount of time(cache). </p> <p>Another process will remove it from the cache. We may receive another message that will remove this message from the cache and prevent it from processing.</p> <p>One way that I though of doing this is</p> <ol> <li>Receive message1 and put in cache for (x) minutes</li> <li>Start a new thread that expires in (x - 1) minutes</li> <li>Receive second message that affects first - removes first message from cache</li> <li>Thread expires if message1 still exist forward to datastore</li> </ol> <p>Any suggestion would be greatly appreciated.</p> http://stackoverflow.com/questions/1739799/doesnt-the-fact-that-go-and-java-use-user-space-thread-mean-that-you-cant-reall 2 Doesn't the fact that Go and Java use User space thread mean that you can't really take advantage of multiple core? Gab Royer 2009-11-16T02:49:42Z 2009-11-24T07:01:24Z <p>We've been talking about threads in my operating system class a lot lately and one question has come to my mind. </p> <p>Since Go, (and Java) uses User-space thread instead of kernel threads, doesn't that mean that you can't effectively take advantages of multiple cores since the OS only allocates CPU time to the process and not the threads themselves?</p> <p><a href="http://tldp.org/FAQ/Threads-FAQ/Types.html" rel="nofollow">This seems to confirm the fact that you can't</a></p> <p><a href="http://en.wikipedia.org/wiki/Thread%5F%28computer%5Fscience%29#N%3A1" rel="nofollow">Wikipedia also seems to think so</a></p> http://stackoverflow.com/questions/1783031/c-asynchronous-operation 1 C# Asynchronous operation threadpool 2009-11-23T13:02:50Z 2009-11-23T13:27:31Z <p>Acctually I have hardtime in understanding BeginInvoke() and EndInvoke() pair.</p> <pre><code>class AsynchronousDemo { public delegate void DemoDelegate(); static void Main() { DemoDelegate d = PrintA; IAsyncResult AResult = d.BeginInvoke(Callback,null); d.EndInvoke(AResult); Console.ReadKey(true); } static void PrintA() { Console.WriteLine("....Method in Print A Running ...."); Thread.Sleep(4000); Console.WriteLine("....Method in Print A Completed..."); } static void Callback(IAsyncResult ar) { Console.WriteLine("I will be finished after method A completes its execution"); } } </code></pre> <p>1) Do we use "EndInvoke()" to indicate the ending "asynchronous operation" of BeginInvoke()..?</p> <p>2) What is the real use of those pair?</p> <p>3) can i get some simple and nice examples to understand it more properly?</p> http://stackoverflow.com/questions/1781578/c-waitcallback-threadpool 0 C# WaitCallBack - ThreadPool threadpool 2009-11-23T07:24:46Z 2009-11-23T08:03:34Z <p>What is the exact purpose of WaitCallback delegate ?</p> <pre><code>WaitCallback callback = new WaitCallback(PrintMessage); ThreadPool.QueueUserWorkItem(callback,"Hello"); static void PrintMessage(object obj) { Console.WriteLine(obj); } </code></pre> <p><em>Can i mean "Wait" in the "TheadPool" until thread is availabe.Once it is available execute the target?</em></p> http://stackoverflow.com/questions/1775822/out-of-memory-on-beginthreadex 3 Out of memory on _beginthreadex josefx 2009-11-21T15:47:07Z 2009-11-21T18:14:42Z <p> 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 _beginthreadex failing with an out of memory error. </p> <p> When examining the Application in ProcessExplorer I can see a growing number of thread handles leaked and a growing virtual memory until the error occurs, the private bytes stay low. The leaked threads also call CoInitialize and never call CoUninitialize. </p> <p>What I would like to know is:<br/></p> <ul> <li>What does the Virtual memory represent ?</li> <li>Is the virtual memory related to the leaked thread handles?</li> <li>Does COM or MSXML6 (called by the threads) copy thread handles and how can I Close them?</li> </ul> <p> I hope that my question is clear and doesn't break any roules,it is my first question and english isn't my first language.:-( </p> <p> I forgot to mention, I close the handles returned by _beginthreadex once the threads get terminated, which reduces the number of open handles by about half but does not affect the virtual memory. Additionally before i inserted the CloseHandle call each thread handle shown in ProcessExplorer had a handle count of two for the thread. </p> <p><strong>Edit</strong></p> <p> I fell stupid for not including this before, I know that the threads exit as the number of active threads while debugging with visual studio does not grow. And I do hope that not all of the leaked memory is a result of calls to TerminateThread as they are used in a rather big library and I would prefer not modifying that. </p> <p> To the com part of my question, with !htrace -diff i find thread handles allocated by msxml but not freed after the functioncalls end, could they be related to the leak or will they be Closed at a later time? </p> <p><p> Thanks for all those comments, while the problem is still there they helped me understand it better.</p> http://stackoverflow.com/questions/1776054/does-autoresetevent-waitone-frees-a-slot-in-the-thread-pool 0 Does AutoResetEvent.WaitOne() frees a slot in the thread pool? Jader Dias 2009-11-21T17:07:43Z 2009-11-21T18:01:43Z <p>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 use AutoResetEvent.WaitOne() it is equivalent to a Thread.Sleep() in terms of thread pool usage?</p> http://stackoverflow.com/questions/1775843/how-to-directly-access-the-ui-thread-from-the-backgroundworker-thread-in-wpf 0 How to directly access the UI thread from the BackgroundWorker thread in WPF? Edward Tanguay 2009-11-21T15:52:35Z 2009-11-21T16:16:07Z <p>I'm creating a backup utility in WPF and have a <strong>general question about threading</strong>:</p> <p>In the method <strong>backgroundWorker.DoWork()</strong>, the statement Message2.Text = "..." gives the error "<strong>The calling thread cannot access this object because a different thread owns it.</strong>".</p> <p>Is there no way for me to directly access the UI thread within backgroundWorker.DoWork(), i.e. change text in a XAML TextBox at that point? Or do I need to store all display information in an <strong>internal variable</strong>, and then display it in <strong>backgroundWorker.ProgressChanged()</strong>, as I had to do with e.g. percentageFinished?</p> <p><strong>XAML:</strong></p> <pre><code>&lt;Window x:Class="TestCopyFiles111.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="350" Width="525"&gt; &lt;DockPanel LastChildFill="True" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10"&gt; &lt;StackPanel Orientation="Horizontal" DockPanel.Dock="Top"&gt; &lt;Button x:Name="Button_Start" HorizontalAlignment="Left" DockPanel.Dock="Top" Content="Start Copying" Click="Button_Start_Click" Height="25" Margin="0 0 5 0" Width="200"/&gt; &lt;Button x:Name="Button_Cancel" HorizontalAlignment="Left" DockPanel.Dock="Top" Content="Cancel" Click="Button_Cancel_Click" Height="25" Width="200"/&gt; &lt;/StackPanel&gt; &lt;ProgressBar x:Name="ProgressBar" DockPanel.Dock="Top" HorizontalAlignment="Left" Margin="0 10 0 0" Height="23" Width="405" Minimum="0" Maximum="100" /&gt; &lt;TextBlock DockPanel.Dock="Top" x:Name="Message" Margin="0 10 0 0"/&gt; &lt;TextBlock DockPanel.Dock="Top" x:Name="CurrentFileCopying" Margin="0 10 0 0"/&gt; &lt;TextBlock DockPanel.Dock="Top" x:Name="Message2" Margin="0 10 0 0"/&gt; &lt;/DockPanel&gt; &lt;/Window&gt; </code></pre> <p><strong>code-behind:</strong></p> <pre><code>using System.Windows; using System.ComponentModel; using System.Threading; using System.IO; using System.Collections.Generic; using System; namespace TestCopyFiles111 { public partial class Window1 : Window { private BackgroundWorker backgroundWorker; float percentageFinished = 0; private int totalFilesToCopy = 0; int filesCopied = 0; string currentPathAndFileName; private List&lt;CopyFileTask&gt; copyFileTasks = new List&lt;CopyFileTask&gt;(); private List&lt;string&gt; foldersToCreate = new List&lt;string&gt;(); public Window1() { InitializeComponent(); Button_Cancel.IsEnabled = false; Button_Start.IsEnabled = true; ProgressBar.Visibility = Visibility.Collapsed; } private void Button_Start_Click(object sender, RoutedEventArgs e) { Button_Cancel.IsEnabled = true; backgroundWorker = new BackgroundWorker(); backgroundWorker.WorkerReportsProgress = true; backgroundWorker.WorkerSupportsCancellation = true; ProgressBar.Visibility = Visibility.Visible; AddFilesFromFolder(@"c:\test", @"C:\test2"); Message.Text = "Preparing to copy..."; MakeSureAllDirectoriesExist(); CopyAllFiles(); } void AddFilesFromFolder(string sourceFolder, string destFolder) { if (!Directory.Exists(destFolder)) Directory.CreateDirectory(destFolder); string[] files = Directory.GetFiles(sourceFolder); foreach (string file in files) { string name = Path.GetFileName(file); string dest = Path.Combine(destFolder, name); copyFileTasks.Add(new CopyFileTask(file, dest)); totalFilesToCopy++; } string[] folders = Directory.GetDirectories(sourceFolder); foreach (string folder in folders) { string name = Path.GetFileName(folder); string dest = Path.Combine(destFolder, name); foldersToCreate.Add(dest); AddFilesFromFolder(folder, dest); } } void MakeSureAllDirectoriesExist() { foreach (var folderToCreate in foldersToCreate) { if (!Directory.Exists(folderToCreate)) Directory.CreateDirectory(folderToCreate); } } void CopyAllFiles() { backgroundWorker = new BackgroundWorker(); backgroundWorker.WorkerReportsProgress = true; backgroundWorker.WorkerSupportsCancellation = true; backgroundWorker.DoWork += (s, args) =&gt; { filesCopied = 0; foreach (var copyFileTask in copyFileTasks) { if (backgroundWorker.CancellationPending) { args.Cancel = true; return; } DateTime sourceFileLastWriteTime = File.GetLastWriteTime(copyFileTask.SourceFile); DateTime targetFileLastWriteTime = File.GetLastWriteTime(copyFileTask.TargetFile); if (sourceFileLastWriteTime != targetFileLastWriteTime) { Message2.Text = "dates are not the same"; } else { Message2.Text = "dates are the same"; } if (!File.Exists(copyFileTask.TargetFile)) File.Copy(copyFileTask.SourceFile, copyFileTask.TargetFile); currentPathAndFileName = copyFileTask.SourceFile; UpdatePercentageFinished(); backgroundWorker.ReportProgress((int)percentageFinished); filesCopied++; } }; backgroundWorker.ProgressChanged += (s, args) =&gt; { percentageFinished = args.ProgressPercentage; ProgressBar.Value = percentageFinished; Message.Text = percentageFinished + "% finished"; CurrentFileCopying.Text = currentPathAndFileName; }; backgroundWorker.RunWorkerCompleted += (s, args) =&gt; { Button_Start.IsEnabled = true; Button_Cancel.IsEnabled = false; ProgressBar.Value = 0; UpdatePercentageFinished(); CurrentFileCopying.Text = ""; if (percentageFinished &lt; 100) { Message.Text = String.Format("cancelled at {0:0}% finished", percentageFinished); } else { Message.Text = "All files copied."; } }; backgroundWorker.RunWorkerAsync(); } void UpdatePercentageFinished() { percentageFinished = (filesCopied / (float)totalFilesToCopy) * 100f; } class CopyFileTask { public string SourceFile { get; set; } public string TargetFile { get; set; } public CopyFileTask(string sourceFile, string targetFile) { SourceFile = sourceFile; TargetFile = targetFile; } } private void Button_Cancel_Click(object sender, RoutedEventArgs e) { backgroundWorker.CancelAsync(); } } } </code></pre> http://stackoverflow.com/questions/1770973/can-a-static-class-be-instantiated-more-than-once-within-a-single-process 0 Can a static class be instantiated more than once within a single process? myotherme 2009-11-20T14:57:39Z 2009-11-20T18:53:19Z <p>Can a single process with multiple threads cause a static class to be created more than once?</p> <p>If I just need a simple construct can I use a static class, or do I have to resort to a singleton?</p> http://stackoverflow.com/questions/1765510/how-to-force-multiple-commands-to-execute-in-same-threading-timeslice 0 How to force multiple commands to execute in same threading timeslice? CSharperWithJava 2009-11-19T18:28:35Z 2009-11-20T13:49:49Z <p>I have a C# app that needs to do a hot swap of a data input stream to a new handler class without breaking the data stream.</p> <p>To do this, I have to perform multiple steps in a single thread without any other threads (most of all the data recieving thread) to run in between them due to CPU switching.</p> <p>This is a simplified version of the situation but it should illustrate the problem.</p> <pre><code>void SwapInputHandler(Foo oldHandler, Foo newHandler) { UnhookProtocol(oldHandler); HookProtocol(newHandler); } </code></pre> <p>These two lines (unhook and hook) must execute in the same cpu slice to prevent any packets from getting through in case another thread executes in between them.</p> <p><strong>How can I make sure that these two commands run squentially using C# threading methods?</strong></p> <p><em>edit</em><br> There seems to be some confusion so I will try to be more specific. I didn't mean concurrently as in executing at the same time, just in the same cpu time slice so that no thread executes before these two complete. A lock is not what I'm looking for because that will only prevent THIS CODE from being executed again before the two commands run. I need to prevent ANY THREAD from running before these commands are done. Also, again I say this is a simplified version of my problem so don't try to solve my example, please answer the question.</p> http://stackoverflow.com/questions/1769274/keeping-a-thread-alive-in-a-c-application 0 Keeping a thread alive in a C# application [closed] manemawanna 2009-11-20T09:18:42Z 2009-11-20T09:40:24Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1722932/locking-main-thread">Locking main() thread</a> </p> </blockquote> <p>Hello,</p> <p>Below you'll find my code, Main calls two threads, one initiates an event handler that returns the values of registry keys after they have been changed. The other sets up a timer which writes the changes to an XML file every few minutes. Basically I'm looking to run the write over and over while I wish the the initiation of the event handler to run only once, but remain open to accept events. Is there any way to do this? Any wait handlers which will still allow code to run etc? Please note that this is a background application, with no console as I don't want any user interaction with the system (I know typically a service is the way to go but when I asked similar questions when running a service I was told to make an application and an application makes more sense for how I want to run it/use it.)</p> <p>Thanks for any help thats given beforehand.</p> <pre><code> public class main { static void Main(string[] args) { runner one = new runner(); runner two = new runner(); Thread thread1 = new Thread(new ThreadStart(one.TimerMeth)); Thread thread2 = new Thread(new ThreadStart(two.start)); thread1.Start(); thread2.Start(); } } public class runner { RegistryValueChange valuechange; List&lt;regkey&gt; RegKeys = new List&lt;regkey&gt;(); static object locker = new object(); public void start() { if (File.Exists("C:\\test.xml")) { file load = new file(); RegKeys = load.read(RegKeys); } string hiveid = "HKEY_USERS"; WindowsIdentity identity = WindowsIdentity.GetCurrent(); string id = identity.User.ToString(); string key1 = id + "\\\\Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Windows Messaging Subsystem\\\\Profiles\\\\Outlook\\\\0a0d020000000000c000000000000046"; List&lt;string&gt; value1 = new List&lt;String&gt; { "01020402", "test" }; valuechange = new RegistryValueChange(hiveid, key1, value1); valuechange.RegistryValueChanged += new EventHandler&lt;RegistryValueChangedEventArgs&gt;(valuechange_RegistryValueChanged); file test = new file(); test.checkfile("C:\\test.xml"); } void valuechange_RegistryValueChanged(object sender, RegistryValueChangedEventArgs e) { } public void TimerMeth() { System.Timers.Timer timer = new System.Timers.Timer(); timer.Elapsed += new ElapsedEventHandler(OnElapsedTime); timer.Interval = 300000; timer.Enabled = true; } private void OnElapsedTime(object source, ElapsedEventArgs e) { lock (locker) { file write = new file(); write.write(RegKeys); } } } </code></pre>