In computing, an interrupt is an asynchronous signal indicating the need for attention or a synchronous event in software indicating the need for a change in execution.
88
votes
5answers
94k views
41
votes
3answers
13k views
How can I interrupt a ServerSocket accept() method?
In my main thread I have a while(listening) loop which calls accept() on my ServerSocket object, then starts a new client thread and adds it to a Collection when a new client is accepted.
I also have ...
20
votes
4answers
8k views
How to interrupt a BlockingQueue which is blocking on take()?
I have a class that takes objects from a BlockingQueue and processes them by calling take() in a continuous loop. At some point I know that no more objects will be added to the queue. How do I ...
19
votes
5answers
29k views
How can I interrupt MATLAB when it gets really really busy?
I'm running a long simulation in MATLAB that I've realized I need to stop and rerun. However, MATLAB is really into this calculation, and it's stopped responding. How can I interrupt this run ...
19
votes
5answers
5k views
Why invoke Thread.currentThread.interrupt() when catch any InterruptException?
I saw many code invoke the method Thread.currentThread.interrupt() in the catch block, why?
15
votes
4answers
3k views
How are interrupts handled by dual processor machines?
I have an idea of how interrupts are handled by a dual core CPU. I was wondering about how interrupt handling is implemented on a board with more than one physical processor.
Is any of the ...
13
votes
2answers
3k views
Stop Internet access on the emulator android
Ok my question might appear a bit strange but here is my problem :
I am testing a database storage after retrieving data from the internet, then i would like to be able to start the emulator with ...
13
votes
6answers
3k views
Is Thread.interrupt() evil?
A teammate made the following claim:
"Thread.interrupt() is inherently broken, and should (almost) never be used".
I am trying to understand why this is the case.
Is it a known best practice ...
12
votes
1answer
3k views
Do interrupts interrupt other interrupts on Arduino?
I have an Arduino Uno (awesome little device!). It has two interrupts; let's call them 0 and 1. I attach a handler to interrupt 0 and a different one to interrupt 1, using attachInterrupt() : ...
12
votes
2answers
527 views
How to properly handle audio interruptions?
I've created a OpenGL 3D game utilizing OpenAL for audio playback and experienceing a problem of losing audio if "Home" button is getting pressed before audio device is getting initialized. I tried to ...
11
votes
11answers
3k views
Interrupts and exceptions
I've seen several question on here about exceptions, and some of them hint at interrupts as exceptions, but none make the connection clear.
What is an interrupt?
What is an exception? (please ...
11
votes
11answers
6k views
Polling or Interrupt based method
When should one use polling method and when should one use interrupt based method ?
Are there scenarios in which both can be used ?
11
votes
1answer
3k views
Boost Thread - How to acknowledge interrupt
I have blocking task which will be performed by find_the_question() function. However, I do not want thread executing this function take more than 10 seconds. So in case it takes more than 10 seconds, ...
11
votes
5answers
3k views
How do system calls work?
I understand that a user can own a process and each process has an address space (which contains valid memory locations, this process can reference). I know that a process can call a system call and ...
10
votes
11answers
16k views
What is the difference between FIQ and IRQ interrupt system?
I want to know the difference between FIQ and IRQ interrupt system in
any microprocessor, e.g: ARM926EJ.
10
votes
3answers
543 views
Who interrupts my thread?
I understand what an InterruptedException does and why it is thrown. However in my application I get it when waiting for SwingUtilities.invokeAndWait() on a thread that is only known by my ...
10
votes
3answers
480 views
Uninterruptable process in Windows(or Linux)?
Is there any way to make a program that cannot be interrupted (an uninterrupted program)? By that, I mean a process that can't be terminated by any signal, kill command, or any other key combinations ...
9
votes
7answers
31k views
What is the difference between a static global and static volatile variable?
I have used a static global variable and a static voltalile variable in file scope,
both are updated by an ISR and a main loop and main loop checks the value of the variable. here during optimization ...
9
votes
3answers
575 views
What are the differences between calling System.exit(0) and Thread.currentThread().interrupt() in the main thread of a Java program?
Both cause a program to stop executing. It's clear that there must be some differences in how this happens, though. What are they?
9
votes
5answers
5k views
When an Thread.interrupt() is called on some thread, what happens? [duplicate]
When an Thread.interrupt() is called on some thread, what happens to that thread?
9
votes
4answers
203 views
How to keep interrupts short?
The most heard advice in embedded programming is "keep your interrupts short".
Now my situation is that I have a very long running task in my main() loop (writing large blocks of data to SDcard), ...
8
votes
4answers
2k views
Java long running task Thread interrupt vs cancel flag
I have a long running task, something like:
public void myCancellableTask() {
while ( someCondition ) {
checkIfCancelRequested();
doSomeWork();
}
}
The task can be cancelled ...
8
votes
2answers
111 views
Ruby - Hide “^C” on Interrupt
In Ruby I have the following:
# Trap Interrupts
trap("INT") do
puts "Shutting down..."
exit
end
When I interrupt the program, the following is printed (Mac OSX Lion):
^CShutting down...
...
8
votes
4answers
1k views
How do you test your interrupt handling module?
I've got an interrupt handling module which controls the interrupt controller hardware on an embedded processor. Now I want to add more tests to it. Currently, the tests only tests if nesting of ...
8
votes
2answers
498 views
interrupt() doesn't work
I am trying to terminate the thread in the following code:
public synchronized void run() {
try {
while (!Thread.currentThread().isInterrupted()) {
this.scan();
...
8
votes
3answers
111 views
How does wait know about interrupt in Java?
Thread.interrupt interrupts such calls as sleep, join and wait. I wonder how it is exactly implemented.
I know Thread.interrupt sets a flag isInterrupted. Does wait just polls this flag ? I hope it ...
8
votes
4answers
612 views
Realtime receiving of UDP packets with QNX RTOS
I have a source which sends UDP packets at a rate of 819.2 Hz (~1.2ms) to my QNX Neutrino machine. I want to receive and process those messages with as little delay and jitter as possible.
My first ...
7
votes
4answers
2k views
How to run one last function before getting killed in Python?
Is there any way to run one last command before a running Python script is stopped by being killed by some other script, keyboard interrupt etc.
Thanks for your help!
7
votes
2answers
609 views
SQL: Interrupting a query
I've worked on a project using a proprietary non-SQL DB where queries could be interrupted and in the codebase there were quite some spots where that functionnality was used and made perfect sense ...
7
votes
4answers
381 views
Can the R console support background tasks or interrupts (event-handling)?
While working in an R console, I'd like to set up a background task that monitors a particular connection and when an event occurs, another function (an alert) is executed. Alternatively, I can set ...
7
votes
4answers
1k views
How to throttle Interrupt Driven UART transmission PIC24H?
I am transmitting data from my PIC24H microcontroller over 460Kbaud UART to a bluetooth radio module. Under most conditions, this flow works just fine and the bluetooth module uses CTS and RTS lines ...
7
votes
2answers
600 views
Concurrency - interrupting a Future without cancelling it
Is there any way to interrupt a Future without cancelling it?
java doc API:
boolean cancel (boolean mayInterruptIfRunning)
Attempts to cancel execution of this task. This attempt will fail if ...
7
votes
2answers
133 views
Statically Defined IDT
I'm working on a project that has tight boot time requirements. The targeted architecture is an IA-32 based processor running in 32 bit protected mode. One of the areas identified that can be improved ...
7
votes
3answers
253 views
Thread interrupt status getting cleared - possible Java bug
This is with reference to Path#register method. If a thread is running a block containing the method and another thread interrupts it beforehand. Then it is found that the method clears the interrupt ...
6
votes
3answers
4k views
How to kill deadlocked threads in Java?
I'd like to kill threads that are stuck in deadlock state. First, we can detect thread ids in deadlock state using the findDeadlockedThreads() method of the ThreadMXBean class in java.lang.management.
...
6
votes
4answers
305 views
In a signal handler, how to know where the program is interrupted?
On x86 (either 64-bit or 32-bit) Linux --
for example:
void signal_handler(int) {
// want to know where the program is interrupted ...
}
int main() {
...
signal(SIGALRM, signal_handler);
...
6
votes
2answers
2k views
Which context are softirq and tasklet in?
I know that there are process context and interrupt context but I don't understand when executing softirq or tasklet, which context is it run under.
I have seen some people use the term ...
6
votes
2answers
471 views
Why two vector table addresses on ARM?
In ARM architecture there is one low vector address0x0 and high vector address 0xFFFF0000.
I was wondering why two vector addresses might be needed ?
In Intel microprocessors and microcontrollers ...
6
votes
1answer
842 views
When and how are system calls interrupted?
This is a followup question to Is a successful send() "atomic"?, as I think it actually concerns system calls in general, not just sends on sockets.
Which system calls can be interrupted, ...
6
votes
2answers
2k views
Linux kernel interrupt handler mutex protection?
Do I need to protect my interrupt handler being called many times for the same interrupt?
Given the following code, I am not sure on the system calls I should make. I am getting rare, random ...
6
votes
3answers
220 views
System call interrupted by a signal still has to be completed
A lot of system calls like close( fd ) Can be interrupted by a signal. In this case usually -1 is returned and errno is set EINTR.
The question is what is the right thing to do? Say, I still want ...
6
votes
2answers
152 views
java: is interrupting thread absolutely necessary
I am new to Java and using a code given by someone. There, at the end of the code, they interrupt a thread if it has not finished. I am measuring the timing of the code.
The problem is that the Java ...
6
votes
1answer
197 views
C - Write to physical memory from kernel module
In the kernel module, I need to handle the interrupt by writing a "zero" to address of physical memory.
First of all, I should allocate a memory by some function like "mmap", but for kernel module; ...
6
votes
2answers
639 views
How to handle iPhone 'Low Battery' pop up during a game
I was wondering how low battery alerts can be handled during a game. I used Cocos2D to make my game. I have the game pause when an interrupt such as a text or a call come in. But what about low ...
5
votes
6answers
2k views
How to interrupt a fread call?
I have the following situation:
There is a thread that reads from a device with a fread call. This call is blocking as long as there is no data send from the device.
When I stop this thread it ...
5
votes
2answers
592 views
Can this be atomically executed?
I would like to know whether it is possible to ensure line is atomically executed, given that it could be executed by both the ISR and Main context. I'm working on an ARM9 (LPC313x) and using RealView ...
5
votes
2answers
2k views
How should I close a socket in a signal handler?
I'm writing a very simple server that loops forever until Ctrl-C is pressed. I'd like to have the signal handler for ctrl-c close the open sockets and shut down the server, but I don't know what the ...
5
votes
5answers
1k views
How do you handle large data transfers on very memory constrained, embedded systems?
I have a microcontroller that must download a large file from a PC serial port (115200 baud) and write it to serial flash memory over SPI (~2 MHz). The flash writes must be in 256 byte blocks preceded ...
5
votes
4answers
894 views
Why is my masm32 program crashing whenever I try using interrupts?
Here's the code:
.386 ;target for maximum compatibility
.model small,stdcall ;model
.code
main:
int 20h
END main
Result: http://img705.imageshack.us/img705/3738/resultom.png
...
5
votes
2answers
3k views