Questions tagged [lockup]
17 questions
10
votes
1 answer
WebRequest.GetResponse locks up?
When writing the below my code locks up on GetResponse. Why?
try
{
WebRequest myWebRequest = WebRequest.Create(strURL);
WebResponse myWebResponse = myWebRequest.GetResponse();
//more code here
user34537
5
votes
2 answers
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 declare a soft lockup.
My question is what are…

Pavan Manjunath
- 27,404
- 12
- 99
- 125
5
votes
4 answers
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 have an issue with the Serial Port, where it will…

pearcewg
- 9,545
- 21
- 79
- 125
3
votes
4 answers
Complete lock-up of a Java process
This one is baffling. All of a sudden we've started experiencing a situation where all threads in a Java process reach a BLOCKED state and the process is completely frozen. There's no jvm.log or hs*.log file to point to what's going on.
A jstack…

Yon
- 1,023
- 4
- 13
- 23
2
votes
0 answers
STM32 how to recover from lock up
I am trying to communicate with an SMBus battery. That has 2 sections so I am using 2 I2C modules. After the first I2C module makes a successful communication second module gets stuck. And it gets stuck in Busy. In that case I thought I need to…

Günkut Ağabeyoğlu
- 414
- 8
- 28
1
vote
5 answers
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 can i do to fix this? i'm actually doing
for i…
user34537
1
vote
1 answer
Apache/PHP using 100% CPU while trying to free cache space
I created a script for use with my website that is supposed to erase the oldest entry in cache when a new item needs to be cached. My website is very large with 500,000 photos on it and the cache space is set to 2 GB.
These functions are what cause…

Mike -- No longer here
- 2,064
- 1
- 15
- 37
1
vote
3 answers
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 good way to start the thread and make the call and…

Bala R
- 107,317
- 23
- 199
- 210
0
votes
0 answers
Freeze after OracleInternal.Network.ReaderStream.Read
We're a MEMS / MOMS developer company with 25 years of experience and Oracle partnership.
Recently, several distinct services under our main product has had hangs. After some analysis we kind of determined the cause around Oracle DB access.
The…
0
votes
0 answers
ARM does not branch properly from FLASH to RAM
I have an STM32H750 ARM Cortex M7 processor and am compiling C code using STM32CubeIDE. I want to have default code in FLASH that is able to run the application by itself but which can also load an updated application to RAM and run the update from…
0
votes
1 answer
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 gesture in presenter. When the command triggers a new…

garek
- 41
- 5
0
votes
0 answers
Table Cell selected but didSelectRowAt indexPath sometimes does not get executed and causes lock up?
[EDIT]:
I think I have solved the lockup issue. While refactoring the didSelectRowAt prep for exit to be a blocking task in the ping async queue, I noticed that successful transitions would consist of one instantaneous move to rootVC followed by…

phantommbot
- 1
- 1
0
votes
0 answers
Table editing with excel vba causing crashing and cell lockup
I have made a userform that allows the user to select a table and add rows to it and fill those rows with various information, all from the userform. I have run into a few problems with this.
First after adding or during adding the items (after…

JED
- 33
- 7
0
votes
1 answer
Restarting due to SPID stuck on RUNNING, KILLED/ROLLEDBACK status
I'm a new "accidental" DBA and I'm currently trying to resolve a lockup caused by a trigger I created on a production database supporting a front end application.
I created a trigger, and then I decided I'd be best off creating a job to do the work…

MattB
- 3
- 3
0
votes
1 answer
Works fine in iphone simulator but lockup in an iphone device
I created an iphone app which requires Sqlite for insert, update and delete records.The application is working fine in iphone simulator.
All functions are working (insert, update and delete record). But when I installed it in iphone or ipad. It…

althea_15
- 1
- 1