The interruption tag has no wiki summary.
8
votes
5answers
722 views
Thread does not abort on application closing
I have an application which does some background task (network listening & reading) in separate Thread. It seems however that the Thread is not being Terminated/Aborted when I close the ...
6
votes
5answers
466 views
AudioSessionSetActive fails after interruption
I was trying to figure out what actually happens for weeks and I have no idea why I cannot continue playback after interruption, so probably you guys know an answer. AudioSessionSetActive(TRUE) always ...
5
votes
1answer
167 views
Handling UserInterrupt exception in Haskell
I'm implementing a REPL for a Scheme interpreter in Haskell and I'd like to handle some async events like UserInterrupt, StackOverflow, HeapOverflow, etc... Basically, I'd like to stop the current ...
5
votes
1answer
336 views
How to catch cancallation of UIScrollView or others?
Sometimes, interruptions such as phone call occur and disturb a regular behavior of an app in iPhone or iPad.
For example, I created one UIScrollView instance and implemented UIScrollView delegate ...
2
votes
2answers
125 views
How Do I Interrupt a Find Dialog in Delphi?
I have a standard Find Dialog:
My program can process some very large files, and finding text in such files may take 10 or 20 seconds or more. So after the "Find Next" button is pressed, I change ...
2
votes
2answers
54 views
Interrupting a thread while it is running; what is the impact of the next interruption?
Let's assume thread t1 is running (i.e. not in a sleep, wait or join state). Another thread t2 interrupts t1. The Javadoc says t1's interrupted status will be set.
Let's assume t1 falls into sleep, ...
2
votes
2answers
183 views
IOS Audio interruption
I am developing an audio streaming app with the old AudioStreamer from Matt and i am trying to make the interruption (when receive a call) by using :
- void MyAudioSessionInterruptionListener(void ...
1
vote
4answers
47 views
OS development: How to avoid an infinite loop after an exception routine
For some months I've been working on a "home-made" operating system.
Currently, it boots and goes into 32-bit protected mode.
I've loaded the interrupt table, but haven't set up the pagination (yet).
...
1
vote
2answers
165 views
Eclipse interruptions under Mac OS 10.7 Lion
I upgraded to Mac OS 10.7 Lion a while ago, and although Eclipse (Eclipse Java EE IDE for Web Developers, Version: Helios Service Release 2) works fine two things go very slow:
Creating a new ...
1
vote
0answers
42 views
iPhone app interruptions not being reported to app correctly
This is a fringe usage case, but it poses a good question. Here you go:
I'm developing a game for iPhone in which I need to pause the game when interruptions occur. I use the interrupt handlers ...
1
vote
1answer
139 views
How to keep my audio app active in background when interruptions occurs?
I'm trying to use AVAudioSession and AVAudioPlayer and audio background mode to keep my app active in background.
It works fine if no interruptions arrives.
But,
when I received ...
1
vote
2answers
188 views
iphone applicationWillResignActive - get reason
I wonder, if there's a way to get reason of applicationWillResignActive being called?
I'm developing an audio app, and I want to continue recording sound when the screen is auto locked, but I want to ...
1
vote
1answer
158 views
how to continue recording automatically if interrupted by an uialert such as text message, push notifications, or low battery status, etc
I have a voice recording app on iPhone OS 4.1. I notice that the app stops recording (maybe because it loses focus) when any alert such as text message or timer or alarms or push notifications and ...
0
votes
0answers
79 views
fail to active audio session while start app for iOS
Question:
how to deal with an interruption while in the period of setting audio session.
Description:
An interruption comes while setting up audio session.AudioSessionSetProperty(YES) ...
0
votes
1answer
187 views
idt_table undefined! warning when compiling kernel module
I'm trying to use gate_desc *idt_table in a kernel module. The set_trap_gate() function defined in desc.h uses this pointer. In desc.h is also a definition : extern gate_desc idt_table[].
I tried ...
0
votes
2answers
299 views
Is it possible that GUI event interrupts running code from the GUI thread to execute its own event handler method?
I have a weird behavior in my GUI code. If the user produces a lot of events in a short time, it happens that a running event handler method gets interrupted by another event handler method.
Since ...
-1
votes
3answers
186 views
Is it possible to force an asynchronous read operation initiated by FileStream.BeginRead to finish early, without errors?
First of all, the documentation for EndRead does NOT explicitly say that an asynchronous read operation initiated by BeginRead is atomic or uninterruptable.
The Question
Is it possible to interrupt ...