active questions tagged hangs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:20:52Z http://stackoverflow.com/feeds/tag/hangs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1727095/iis-6-0-hangs-when-serving-a-web-service 0 IIS 6.0 hangs when serving a web-service Gokul 2009-11-13T04:12:54Z 2009-11-13T12:04:25Z <p>Hi guys I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a seperate application or using cassini from Visual studio.</p> <p>Once I deploy on the web-server (win 2003 server)it throws some generic error and crashes the IIS worker process(W3wp). </p> <p>If I try to attach visual studio and debug the issue its throwing error at the very initial level even before displaying the default asmx page details. The error that is being caught is a stack over-flow exception.</p> <p>Thanks, Gokul</p> http://stackoverflow.com/questions/1013064/why-does-this-python-code-hang-on-import-compile-but-work-in-the-shell 0 Why does this python code hang on import/compile but work in the shell? 2009-06-18T14:45:19Z 2009-06-21T04:01:18Z <p>I'm trying to use python to sftp a file, and the code works great in the interactive shell -- even pasting it in all at once.</p> <p>When I try to import the file (just to compile it), the code hangs with no exceptions or obvious errors. </p> <p>How do I get the code to compile, or does someone have working code that accomplishes sftp by some other method?</p> <p>This code hangs right at the ssh.connect() statement:</p> <pre> """ ProblemDemo.py Chopped down from the paramiko demo file. This code works in the shell but hangs when I try to import it! """ from time import sleep import os import paramiko sOutputFilename = "redacted.htm" #-- The payload file hostname = "redacted.com" ####-- WARNING! Embedded passwords! Remove ASAP. sUsername = "redacted" sPassword = "redacted" sTargetDir = "redacted" #-- Get host key, if we know one. hostkeytype = None hostkey = None host_keys = {} try: host_keys = paramiko.util.load_host_keys(os.path.expanduser('~/.ssh/known_hosts')) except IOError: try: # try ~/ssh/ too, because windows can't have a folder named ~/.ssh/ host_keys = paramiko.util.load_host_keys(os.path.expanduser('~/ssh/known_hosts')) except IOError: print '*** Unable to open host keys file' host_keys = {} if host_keys.has_key(hostname): hostkeytype = host_keys[hostname].keys()[0] hostkey = host_keys[hostname][hostkeytype] print 'Using host key of type %s' % hostkeytype ssh = paramiko.Transport((hostname, 22)) ssh.connect(username=sUsername, password=sPassword, hostkey=hostkey) sftp = paramiko.SFTPClient.from_transport(ssh) sftp.chdir (sTargetDir) sftp.put (sOutputFilename, sOutputFilename) ssh.close() </pre> http://stackoverflow.com/questions/616710/javascript-hangs-browser 0 javascript hangs browser Tommy 2009-03-05T21:31:52Z 2009-03-05T21:43:22Z <pre><code>xmlDoc.load("cd_catalog.xml") var cd=xmlDoc.getElementsByTagName("CD"); var id_set=1; var id=xmlDoc.getElementsByTagName("ID"+id_set); i=0; function next() { if (i&lt;id.length-1) { i++; display(); } } function display() { document.write('&lt;div class="dd"&gt;') document.write('&lt;div class="blue" style="WIDTH:') document.write(cd[0].getElementsByTagName("ID"+id_set)[i].childNodes[0].nodeValue) document.write('"&gt;&lt;/div&gt;') document.write('&lt;/div&gt;') } } &lt;/script&gt; &lt;script type="text/javascript"&gt; display() &lt;/script&gt; &lt;br&gt;&lt;input type="button" onclick="next()" value="next" ID="Button2" NAME="Button2"/&gt; </code></pre> <p>I saw <a href="http://stackoverflow.com/questions/575222/newbie-hanging-browser-on-function-call">related question</a>, but not sure that helps.. I added the next() function and the browser hangs as if it is loading something, never does. Without the next() call the display function works. I am trying to do a variation <a href="http://www.w3schools.com/xml/tryit.asp?filename=tryxml%5Fapp%5Fnavigate" rel="nofollow">of this</a>.</p> http://stackoverflow.com/questions/591047/command-line-windows-hanging-in-rdp-windows 0 Command Line Windows Hanging in RDP Windows ssorrrell 2009-02-26T15:35:56Z 2009-02-26T16:05:51Z <p>We regularly access the build machine through RDP and it there are lots of command line windows that open. Sometimes these windows hang like someone switched focus to them and press the Pause key. Tapping the keyboard moves the process along, but every once in a while this is missed and everyone waits on the process to finish while it is waiting for someone to press a key. Why does this happen? Is there a setting or version up/down-grade that can keep it from happening?</p> http://stackoverflow.com/questions/310548/windows-under-what-circumstances-might-setevent-not-return-immediately 1 Windows: Under what circumstances might SetEvent() not return immediately? Wilson Fowlie 2008-11-21T23:32:45Z 2009-02-13T19:19:03Z <p>I have a thread that, when its function exits its loop (the exit is triggered by an event), it does some cleanup and then sets a different event to let a master thread know that it is done.</p> <p>However, under some circumstances, SetEvent() seems not to return after it sets the thread's 'I'm done' event.</p> <p>This thread is part of a DLL and the problem seems to occur after the DLL has been loaded/attached, the thread started, the thread ended and the DLL detached/unloaded a number of times without the application shutting down in between. The number of times this sequence has to be repeated before this problem happens is variable.</p> <p>In case you are skeptical that I know what I'm talking about, I have determined what's happening by bracketing the SetEvent() call with calls to OutputDebugString(). The output before SetEvent() appears. Then, the waiting thread produces output that indicates that the Event has been set.</p> <p>However, the second call to OutputDebugString() in the exiting thread (the one AFTER SetEvent() ) never occurs, or at least its string never shows up. If this happens, the application crashes a few moments later.</p> <p>(Note that the calls to OutputDebugString() were added after the problem started occurring, so it's unlikely to be hanging there, rather than in SetEvent().)</p> <p>I'm not entirely sure what causes the crash, but it occurs in the same thread in which SetEvent() didn't return immediately (I've been tracking/outputting the thread IDs). I suppose it's possible that SetEvent() is finally returning, by which point the context to which it is returning is gone/invalid, but what could cause such a delay?</p> <p>It turns out that I've been blinded by looking at this code for so long, and it didn't even occur to me to check the return code. I'm done looking at it for today, so I'll know what it's returning (<em>if</em> it's returning) on Monday and I'll edit this question with that info then.</p> <p>Update: I changed the (master) code to wait for the thread to exit rather than for it to set the event, and removed the SetEvent() call from the slave thread. This changed the nature of the bug: now, instead of failing to return from SetEvent(), it doesn't exit the thread at all and the whole thing hangs.</p> <p>This indicates that the problem is not with SetEvent(), but something deeper. No idea what, yet, but it's good not to be chasing down that blind alley.</p> <p>Update (Feb 13/09):<br> It turned out that the problem was deeper than I thought when I asked this question. jdigital (and probably others) has pretty much nailed the underlying problem: we were trying to unload a thread as part of the process of detaching a DLL.</p> <p>This, as I didn't realize at the time, but have since found out through research here and elsewhere (Raymond Chen's blog, for example), is a Very Bad Thing.</p> <p>The problem was, because of the way it was coded and the way it was behaving, it not obvious that that was the underlying problem - it was camouflaged as all sorts of other Bad Behaviours that I had to wade through.</p> <p>Some of the suggestions here helped me do that, so I'm grateful to everyone who contributed. Thank you!</p> http://stackoverflow.com/questions/21411/php-sleep-silently-hogs-cpu 4 PHP sleep() silently hogs CPU Steve M 2008-08-21T23:17:41Z 2009-01-31T11:28:58Z <p>I'm running Apache on Linux within VMWare. One of the PHP pages I'm requesting does a sleep(), and I find that if I attempt to request a second page whilst the first page is sleep()'ing, the second page hangs, waiting for the sleep() from the first page to finish.</p> <p>Has anyone else seen this behaviour? I know that PHP isn't multi-threaded, but this seems like gross mishandling of the CPU.</p> <p>Edit: I should've mentioned that the CPU usage doesn't spike. What I mean by CPU "hogging" is that no other PHP page seems able to use the CPU whilst the page is sleep()'ing.</p> http://stackoverflow.com/questions/450630/visaul-c-2005-hangs-during-qt-builds 0 Visaul C++ 2005 hangs during qt builds geocoin 2009-01-16T14:57:48Z 2009-01-16T15:39:03Z <p>At my shop, the main product app is a mongrel built on MFC, QT and other random things devs have thrown in over the years. In the current stack, Qt toolkit is on the way out, but still features heavily.</p> <p>If I have SQL 2005 Management studio open and have to do a full build, it usually hangs a CPU (even after the offending process is taken out back and shot...) during the qt specific parts of the build (Moc'ing and UIC'ing)</p> <p>has anyone seen anything like this? any ideas what the problem could be?</p> http://stackoverflow.com/questions/411632/how-to-find-out-what-eclipse-is-doing-in-backround 2 How to find out what Eclipse is doing in backround? Alexander Gladysh 2009-01-04T20:28:59Z 2009-01-05T07:40:19Z <p>OS X 10.5.6.</p> <p>My Eclipse 3.4 is going crazy lately. </p> <p>After innocent operations like typing text or moving some files in Navigator view or saving, it sometimes starts "waiting on background operation", and eats one CPU core, shuffling back and forth tens of megabytes of memory.</p> <p>I suspect some of plug-ins went rogue.</p> <p>How can I find which one it is (except for binary search)?</p> http://stackoverflow.com/questions/373261/glgeterror-hangs-for-several-seconds 1 glGetError hangs for several seconds Andrew Garrison 2008-12-17T00:19:50Z 2008-12-19T16:39:51Z <p>I am developing an OpenGL application and I am seeing some strange things happen. The machine I am testing with is equipped with an NVidia Quadro FX 4600 and it is running RHEL WS 4.3 x86_64 (kernel 2.6.9-34.ELsmp).</p> <p>I've stepped through the application with a debugger and I've noticed that it is hanging on OpenGL calls that are receiving information from the OpenGL API: i.e. - glGetError, glIsEnabled, etc. Each time it hangs up, the system is unresponsive for 3-4 seconds.</p> <p>Another thing that is interesting is that if this same code is run on RHEL 4.5 (Kernel 2.6.9-67.ELsmp), it runs completely fine. The same code also runs perfectly on Windows XP. All machines are using the exact same hardware:</p> <ul> <li>PNY nVidia Quadro FX4600 768mb PCI Express </li> <li>Dual Intel Xeon DP Quad Core E5345 2.33hz </li> <li>4096 MB 667 MHz Fully Buffered DDR2 </li> <li>Super Micro X7DAL-E Intel 5000X Chipset Dual Xeon Motherboard </li> <li>Enermax Liberty 620 watt Power Supply </li> </ul> <p>I have upgraded to the latest 64bit drivers: Version 177.82, Release Date: Nov 12, 2008 and the result is the exact same.</p> <p>Does anyone have any idea what could be causing the system to hang on these OpenGL calls?</p> <p>Thanks! </p> http://stackoverflow.com/questions/305713/excel-web-query-times-out 0 Excel web query times out Scott and the Dev Team 2008-11-20T15:42:55Z 2008-11-20T15:42:55Z <p>I have an excel page that runs a series of web queries that call reporting services reports and thencut-n-paste that into powerpoint. from time to time, the query hangs and brings the app to a screeching halt. is there a way to maybe put that into a loop and keep looping until the web query actually brings back some data?</p> http://stackoverflow.com/questions/258304/java-applet-ie-browser-hangs-after-opening-a-file-dialog-workaround 0 Java applet: IE Browser hangs after opening a file dialog. Workaround? paul 2008-11-03T10:43:34Z 2008-11-03T12:04:10Z <p>This is a registered bug (<a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6515708" rel="nofollow">Bug ID: 6515708</a>) but does anyone have a workaround for it?</p> <p><strong>Scenario</strong></p> <ul> <li>javascript calls OpenDialog() method in applet</li> <li>applet starts new thread which opens the AWT FileDialog</li> <li>on completion, the file name is read and the javascript method OnDialogComplete is called</li> <li>At this point the dialog is disposed and (on some browsers only) the browser hangs.</li> </ul> <p>We have a mixture of XP with IE6/7 and Vista with IE7 but unfortunately the bug appears randomly on any of them.</p> <p>Ideas anyone?</p> http://stackoverflow.com/questions/139593/processstartinfo-hanging-on-waitforexit-why 2 ProcessStartInfo hanging on "WaitForExit"? Why? Epaga 2008-09-26T13:46:56Z 2008-09-26T13:57:19Z <p>I have the following code:</p> <pre><code> info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; info.RedirectStandardOutput = true; info.UseShellExecute = false; System.Diagnostics.Process p = System.Diagnostics.Process.Start(info); p.WaitForExit(); Console.WriteLine(p.StandardOutput.ReadToEnd()); //need the StandardOutput contents </code></pre> <p>I know that the output from the process I am starting is around 7MB long. Running it in the Windows console works fine. Unfortunately programmatically this hangs indefinitely at WaitForExit. Note also this does code NOT hang for smaller outputs (like 3KB).</p> <p>Is it possible that the internal StandardOutput in ProcessStartInfo can't buffer 7MB? If so, what should I do instead? If not, what am I doing wrong?</p> http://stackoverflow.com/questions/59622/detecting-appilcation-hangs-with-activex-controls-in-net 2 Detecting appilcation hangs with ActiveX controls in .Net ctrlShiftBryan 2008-09-12T17:53:07Z 2008-09-12T18:01:22Z <p>I am working on upgrades to a screen scraping application. We are using an ActiveX control to scrape screens out of an IBM mainframe. The mainframe program often hangs and crashes the ActiveX control causing our application to crash. We don't have access to the mainframe or the ActiveX source code. We are not going to write our own active x control.</p> <p>What is the bast way to encapsulate an ActiveX control to detect application hangs with the control so we can kill the process and restart with code?</p> <p>Should I create 2 separate applications? One as a controller that checks on the other and kills/restarts the process when it hangs? </p> <p>Would they have to be on separate app domains? Is it possible have two programs communicate with each other even if they are on separate app domains?</p> http://stackoverflow.com/questions/56070/delete-statement-hangs-on-sql-server-for-no-apparent-reason 1 DELETE Statement hangs on SQL Server for no apparent reason Lasse V. Karlsen 2008-09-11T08:51:39Z 2008-09-11T12:42:01Z <p><strong>Edit</strong>: Solved, there was a trigger with a loop on the table (read my own answer further below).</p> <p><hr /></p> <p>We have a simple delete statement that looks like this:</p> <pre><code>DELETE FROM tablename WHERE pk = 12345 </code></pre> <p>This just hangs, no timeout, no nothing.</p> <p>We've looked at the execution plan, and it consists of many lookups on related tables to ensure no foreign keys would trip up the delete, but we've verified that none of those other tables have any rows referring to that particular row.</p> <p>There is no other user connected to the database at this time.</p> <p>We've run DBCC CHECKDB against it, and it reports 0 errors.</p> <p>Looking at the results of <em><code>sp_who</code></em> and <em><code>sp_lock</code></em> while the query is hanging, I notice that my spid has plenty of PAG and KEY locks, as well as the occasional TAB lock.</p> <p>The table has 1.777.621 rows, and yes, pk is the primary key, so it's a single row delete based on index. There is no table scan in the execution plan, though I notice that it contains something that says <em>Table Spool (Eager Spool)</em>, but says Estimated number of rows 1. Can this actually be a table-scan in disguise? It only says it looks at the primary key column.</p> <p>Tried DBCC DBREINDEX and UPDATE STATISTICS on the table. Both completed within reasonable time.</p> <p>There is unfortunately a high number of indexes on this particular table. It is the core table in our system, with plenty of columns, and references, both outgoing and incoming. The exact number is 48 indexes + the primary key clustered index.</p> <p>What else should we look at?</p> <p>Note also that this table did not have this problem before, this problem occured suddently today. We also have many databases with the same table setup (copies of customer databases), and they behave as expected, it's just this one that is problematic.</p>