Questions tagged [interruption]
126 questions
0
votes
1 answer
How to kill a submitted Callable doing uninterrupible IO that won't return
I am trying to build a SIMPLE test case to send to IBM to try to resolve this issue
I thought it would be simple to gin up a JUnit Test case or a little main app that made the calls and show that the MQ call never returned. I thought I'd use the…

Steve Cohen
- 4,679
- 9
- 51
- 89
0
votes
2 answers
Java Thread interruption: interrupt() vs stop()
I have a problem when working with thread in Java. What is the method preferred between interrupt() and stop() for interrupting a thread in Java? And why?
Thanks for any responses.

minh-hieu.pham
- 1,029
- 2
- 12
- 21
0
votes
1 answer
iOS TTS with phone call interruption
I have iOS7 application that play some voice commands using Apple TTS engine, I am using this to setup my audio session:
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback
…

user3456603
- 31
- 4
0
votes
1 answer
Difference between Thumb2 and ARM when an interruption occurs
I am porting a project to the Freescale TWR-K60F120M development board and a Kinetis K60 32-bit ARM® Cortex™-M4 MCU. While manipulating assembly code, I came accross a function that saves a Task context in specific registers.
Does anyone know in…

Zohra-tl
- 53
- 9
0
votes
0 answers
AWT event thread interruption - bad CPU loading
When the AWT event thread is interrupted by performing the action on UI after sleep() or wait() it results in bad CPU (25-30%) loading caused by the running java process (Windows 7, JRE 1.7.0_05).
Why does it happen?
package main;
import…

chaplean
- 197
- 1
- 3
- 10
0
votes
0 answers
How to break matlab script execution?
How to break Matlab script execution? Ctrl-C does not work, probably because of using waitforbuttonpress inside catch:
while 1
try
waitforbuttonpress
catch err
end
end

Suzan Cioc
- 29,281
- 63
- 213
- 385
0
votes
3 answers
assembly getting an input immediately
Is there any interruption in assembly which read an input immediately (I mean without waiting for an enter and etc).
For example: In java there is in the keylistener a function gives the ascii code of a key pressed without waiting to confirm the…

TJR
- 454
- 8
- 24
0
votes
1 answer
serial port, RTS CTS, assembly
i'm working on a chat using assembly, i'm using Advanced Virtual COM Port to create
a COM2 and a COM3 on my pc and connect them together. I was testing a sending and a receiving program and they work fine, but only once.
By one i mean that at…

Ricardo
- 246
- 3
- 11
0
votes
1 answer
chat on assembly using serial port
I'm working on a chat using assembly and i got this huge doubt, I'm currently using
int 21,
AH= 0Ah
to get a string from the keyboard wich I will later send, char by char, through the serial port, but then i was wondering how, will I receive a msg…

Ricardo
- 246
- 3
- 11
0
votes
1 answer
How to handle spotify player interruption in iPhone
I am implementing Spotify in my application.
How can I handle the interruptions like phone call, play song from iPod player etc.

Tinku George
- 195
- 2
- 11
0
votes
1 answer
beaglebone serial port interruption
I need to set an interruption for the serial (uart) port in Beaglebone, in such a way that when the serial port receives any info an interruption (function) is automatically activated doing something with the received data.
I have searched methods…

gus
- 355
- 2
- 5
- 19
0
votes
1 answer
Set-up interruption flag whenever I want
I have a problem with set-up interruption flag in AVR AT90S2313. Normally interruption is setting-up through hardware counter. I want to setting this flag in programming way when I want (at the specific moment). I'm writing all code in C:
SEI(); …

caro
- 381
- 3
- 5
- 20
0
votes
1 answer
present two view controllers from different location in the view hierarchy, so one view can be on top whenever an interruption occurs?
I have an application where the root view controller is an UITabBarController that have several tabs controllers. This tabs controllers could presents others view controllers as the User modify some elements. When a certain notification occurs, I…

yageek
- 4,115
- 3
- 30
- 48
0
votes
2 answers
symfony2 long script interrupts and displays save dialog
i have a script that load a csv by CURL, once i have the csv it add each of the records to the database and when finished, display the total amount of registries added.
on less than 500 registries, it execute just fine, the problem is that whennever…

rpalaciosv
- 73
- 4
-1
votes
1 answer
Powershell Call cancelled
I was running Get-CimInstance -Namespace root/CIMV2 -ClassName CIM_Component | Out-File -Encoding utf8 .\CIM_Component.txt and received
Get-CimInstance : Call cancelled
At line:1 char:2
+ (Get-CimInstance -Namespace root/CIMV2 -ClassName…

Whitequill Riclo
- 788
- 2
- 8
- 19