Top "Interrupt" questions

Use for questions related to interrupt signals and interrupt handling.

Stopping C++ 11 std::threads waiting on a std::condition_variable

I am trying to understand the basic multithreading mechanisms in the new C++ 11 standard. The most basic example I can …

c++ multithreading c++11 interrupt condition-variable
Java equivalent of setInterval in javascript

Basically I want a function to be called every say, 10 milliseconds. How can I achieve that in Java?

java timing interrupt
prevent linux thread from being interrupted by scheduler

How do you tell the thread scheduler in linux to not interrupt your thread for any reason? I am programming …

linux multithreading interrupt
STM32F4 UART Rx Interrupt Example Code

I've been trying to implement a basic per-byte UART Rx Interrupt on a STM32F4 board using HAL skeleton code …

interrupt uart stm32f4
Methods that Clear the Thread.interrupt() flag

I have recently inherited a large Java Application that has almost no Thread safety in it. What I'm currently working …

java multithreading interrupt
Simple interrupt handler: request_irq returns error code -22

I am writing a simple kernel module, which could register an interrupt and handle it. However, when I try to …

c linux module linux-kernel interrupt
Future.cancel() method is not working

The code that I have creates a Callable instance and using ExecutorService a new thread is being created. I want …

java concurrency interrupt interrupt-handling interrupted-exception
Does calling Thread.interrupt() before a Thread.join() cause the join() to throw an InterruptedException immediately?

Basically, what the question title says. Thread t = new Thread(someRunnable); t.start(); t.interrupt(); t.join(); //does an InterruptedException …

java multithreading concurrency interrupt interrupted-exception
arm sleep mode entry and exit differences WFE, WFI

I am reasonably new to the ARM architectures and I am trying to wrap my head around the wake up …

arm interrupt cortex-m
What is Rescheduling interrupts (RES)? What causes it? How is it handled in Linux kernel?

What is the difference between "RES: Rescheduling interrupts" and "LOC: Local timer interrupts"? What is responsible to fire the RES …

timer linux-kernel interrupt scheduler processor