Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
1k views

Windows/.NET way to monitor/debug the serial port?

I have an application which is .NET 2.0, running on Windows XP Professional. This app uses the Serial Port to communicate with some custom devices. For some reason, a few of our custom built PCs ...
2
votes
1answer
1k views

WebRequest.GetResponse locks up?

When writing the below my code locks up on GetResponse. Why? try { WebRequest myWebRequest = WebRequest.Create(strURL); WebResponse myWebResponse = ...
1
vote
1answer
164 views

Reasons for Soft Lock up?

When we enable CONFIG_DETECT_SOFTLOCKUP to detect soft lockups, it creates a new task called khungtaskd which will run every 1s. If khungtaskd fails to get scheduled for 'n' seconds, then Kernel will ...
1
vote
3answers
358 views

Best way to identify and dispose locked thread in java

I have to call a function 3rd party module on a new thread. From what I've seen, the call either completes quickly if everything went well or it just hangs for ever locking up the thread. What's a ...
1
vote
5answers
317 views

python sleep == IDE lock up

When my script sleeps for 50sec my IDE locks up which is very annoying. I cant switch tabs, look through my source, type code, etc. It happens in pylde and pyscripter, i havent tried other IDEs. What ...
0
votes
0answers
68 views

ActiveDs.dll — application hangs when querying active directory with C#

I have been googling this problem for a while and haven't been able to find anyone experiencing the same problems. I have an application written in C# that does many things needed by our IT HelpDesk. ...
0
votes
1answer
71 views

The whole wpf application is blocked after i call Show() for new window

I am developing a WPF-application using mvvm pattern. And a strange problem occurred to me. There is a form, which contains a devexpress DXGrid control. There is a command binded to double click ...
0
votes
0answers
148 views

A Star Algorithm | Lockup

The A Star algorithm I've been working on is locking up on me (going into infinite loop), but I cannot seem to find out how it is locking up (I know where but don't know why). Main: Node nodes[][]; ...