hang

Eclipse Luna Hangs in Java Debug

假如想象 提交于 2019-12-11 13:45:01
问题 Did some research on this but can't find an answer for my set of circumstances. Problem: I can't start a debug on any Java apps in Eclipse Luna. The progress window tells me that it's "Launching Main" and the progress bar extends to 85% where it hangs. At this point I am given the following beneath the progress bar "Launching: Finding free socket..." Here's my setup: Eclipse Luna (clean install) Java is latest (1.7.0_65) Windows 7 pinging both localhost and 127.0.0.1 return good connections

Android Eclipse Hanging

对着背影说爱祢 提交于 2019-12-11 06:36:32
问题 I'm trying to get the ADT working in Eclipse, but I'm getting random hangs where eclipse just locks for no apparent reason, usually requiring a 'killall java' to properly clean it out of the memory. I'm on Ubuntu 10.4 (64bit) Here's the details of my eclipse/android install: eclipse Version: 3.5.2 Build id: M20100211-1343 Android Development Tools 0.9.8.v201008281755-53891 com.android.ide.eclipse.adt.feature.group Android DDMS 0.9.8.v201008281755-53891 com.android.ide.eclipse.ddms.feature

PyCurl request hangs infinitely on perform

[亡魂溺海] 提交于 2019-12-11 06:13:34
问题 I have written a script to fetch scan results from Qualys to be run each week for the purpose of metrics gathering. The first part of this script involves fetching a list of references for each of the scans that were run in the past week for further processing. The problem is that, while this will work perfectly sometimes, other times the script will hang on the c.perform() line. This is manageable when running the script manually as it can just be re-run until it works. However, I am looking

Hanging on “Thread.StartInternal” when handling a ServiceStack request

心不动则不痛 提交于 2019-12-10 23:32:22
问题 I have a ServiceStack (4.0.46) web service which runs fine upon launch, however after having processed a few requests and a non deterministic duration (generally between 30mn and 24 hours), it will eventually get stuck upon handling a request (which it receives well), with the following stack trace: This particular function from System.Threading.Thread seems to hang (on the last line): [SecuritySafeCritical] private void Start(ref StackCrawlMark stackMark) { this

Analyzing Outlook HANG dump (with GoogleCalendarSync add-in installed)

故事扮演 提交于 2019-12-10 19:08:37
问题 Since I started using outlook with GoogleCalendarSync i'm experiencing hangs every once in awhile. I used ADPlus to create a hang dump of the process (using adplus -hang -pn outlook.exe -o c:\dumps ). When I read the dump via WinDBG I use the command !analyze -v -hang , but I can't figure out what exactly went wrong. The output of the command is: ******************************************************************************* * * * Exception Analysis * * * *************************************

How to kill a PHP session?

我只是一个虾纸丫 提交于 2019-12-10 18:07:43
问题 This general topic has come up before, here, here, here, and no doubt elsewhere on the internet as well. In my case, unlike these, the hang arises from a blocking socket that never gets a message, and perhaps that's why the solutions described there haven't worked for me. I'm developing in tandem a C++ app which communicates with the php script via a local socket connection, and when the C++ app crashes, it leaves the php script's socket waiting for a message that never comes. I've tried

WinDbg: APPLICATION_HANG_WRONG_SYMBOLS

天大地大妈咪最大 提交于 2019-12-10 17:52:18
问题 I'm pretty new to WinDbg and I'm trying to find a bug which has my application hanging for no appearent reason. I'm not sure I'm doing things right, but I understand that I need both symbols for the system dlls aswell as the .exe I'm debugging. Thus, I set up my symbol path like this: srv*c:\websymbols*http://msdl.microsoft.com/download/symbols;S:\MY\PATH The second path pointing to a folder where I placed the .pdb that was generated by VS. I'm positive that's the correct .pdb file, but it

Golang - Using chan slice inside struct

喜夏-厌秋 提交于 2019-12-10 14:57:28
问题 I am trying to use a slice chan type inside a struct, similar to the code below. However, when I try to receive at test := <-c.slice The program hangs. Is there a way to do this? package main import "fmt" type blah struct { slice chan [][]int } func main() { slice := make([][]int, 3) c := blah{make(chan [][]int)} slice[0] = []int{1, 2, 3} slice[1] = []int{4, 5, 6} slice[2] = []int{7, 8, 9} go func() { test := <- c.slice test = slice c.slice <- test }() fmt.Println(<-c.slice) } 回答1: The first

System.Threading.Timer Not Starting?

你说的曾经没有我的故事 提交于 2019-12-10 14:14:15
问题 I'm using C# with Compact Framework 2, SP2. The device's OS was set up to start up with my application, let's call the application "Loader.exe." Loader is simply this: a single, plain form that shows status messages throughout loading, if necessary (layman's terms for there being an error and an exception message, or "starting application [xyz]"), and a state machine running in the background while a basic full-screen form is shown. So Loader's form's constructor has the following at the very

Cuda hangs on cudaDeviceSynchronize randomly [closed]

冷暖自知 提交于 2019-12-10 13:12:37
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I have a piece of GPU code that has worked for a while. I recently made a couple minor algorithmic changes, but they didn't touch the CUDA part. I'm running production runs on a set of three Xeon machines, each with a 780 Ti in it. Each run takes about three minutes to complete, but at this point there have been