|
Visual studio debugger hangs while loading symbols for my application(native IA64), SP1 is installed. This started to occur, after i install debugging tools for windows(64 bit version), and reboot my computer. This issue is not depend on my project, even...
Started by Lazin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The way around this is to load....
Is it completely hanging, or just taking a long time to load the symbols?
If you using a symbol server to access debug symbols for the Windows DLLs, VS2005 can try to access the symbol server every time you debug.
|
|
Internet Explorer 8.0 hangs in "Getting File Information" while downloading file.
What could it be? I can download this same file from FireFox.
Started by Daniel Silveira on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
First thing i would try is run Internet ....
Turned out to be bad MTU setting on the NIC .
I've seen this before.
One solution to this problem is to go to Tools, Internet Options, then advanced and untick the "Do not save encrypted pages to disk" option .
|
|
When i use SendMessage function with HWND_BROADCAST, the application hangs up. there is no response from the application for long time.
Can anyone explain why?
Started by AH on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If a single window....
SendMessage will not return until the window has finished processing the message .
This is because SendMessage called with HWND_BROADCAST first enumerates all the windows available and then calls SendMessage for each of those windows .
|
Ask your Facebook Friends
|
Trying to do an upgrade on an Ubuntu machine I inherited from someone, and it hangs whenever it has to configure console-setup. Any ideas why?
Started by superjoe30 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Now run
# dpkg....
Edit /var/lib/dpkg/info/console-setup.post-inst and add
set -x
as the second line, just after the
#!/bin/bash
line .
You can do this by editing the post-install script.
Probably the best thing to do is to find out what command it's running .
|
|
I have some code which I did not originally create that uses _beginthreadex and _endthreadex. For some reason, when it calls _endthreadex(0), the call just hangs and never returns. Any ideas as to what would normally cause this call to hang?
Started by Adam Haile on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Classinstance"...and that deconstructor call never returns...so the whole thing hangs
Are you() in your main thread would cause the process to hang, because you've terminated your main thread.
|
|
I'm trying to use psftp for a nightly sftp upload but I found out that it hangs. Does anyone have any experience with what may cause such hangs? The psftp can stay in this state for days at end. I tried adding -bc and -be to the start up, it already had...
Started by Remus Rusanu on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
We have also had issues in the past where a transfer would finish, ... .
The transfers will stall out after 100-200K of data.
What is it connecting to? We have recently had some issues connecting to VMWare servers although other network traffic works fine .
|
|
My application hangs. Pressing the home button doesn't return to the springboard anymore. Additionally pressing the power button for 10 seconds doesn't turn the iphone off at all.
Is there any way to force a shutdown?
Started by andi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Application reproducibly hangs the phone, please file a bug report at bugreport.apple.com and attach.
|
|
I have a laptop which is not associated with a domain (it's on the default "WORKGROUP"). When I log in, the computer hangs on "Applying your personal settings" for a very long time. Do you have any idea what I can do to fix this?
Answer Snippets (Read the full thread at superuser):
Seems to be normal.
I have been in your same situation, eventually it recovers from the hang.
|
|
What is the difference (or causes) between a program that crashes and a program that hangs (becomes unresponsive) in C++?
For sure, accessing invalid memory causes a program to crash. Deadlock in threads may cause a program to hang. What are the other...
Started by jasonline on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
A hang may also be caused by the termination of a thread that handles hang because something happens to their....
Though that usually times out after a while.
Hangs can also be caused by waiting for external resources, mostly networking.
|
|
I have a Windows Service that hangs when opening an OLEDB-connection to an Excel-file, like this:
using (var connection = new OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fileName + ";Extended Properties=\"Excel 8.0\"")) { connection...
Started by Tommy Carlier on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Still hangs, is the CPU pegged which would indicate that there might be something about the file which.
|