Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
3k 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 ...
12
votes
4answers
2k 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 ...
10
votes
4answers
3k 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 ...
10
votes
3answers
359 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
11answers
2k 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 ...
9
votes
1answer
858 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() : ...
9
votes
5answers
832 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 never to ...
8
votes
2answers
115 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
11answers
2k 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 ?
8
votes
2answers
1k 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 ...
8
votes
4answers
724 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 ...
7
votes
4answers
174 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
509 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
4answers
357 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 ...
7
votes
3answers
512 views

Thread.interrupt() What does it do?

Could you explain me what does this function do when invoked?
7
votes
2answers
175 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
798 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!
6
votes
1answer
92 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
4answers
145 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
9k 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 ...
5
votes
1answer
144 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 ...
5
votes
3answers
204 views

C++ cast pointer to static method

I haven't write C++ code in a long while; however now I have to work on a texas instruments F28335 DSP and I am trying to migrate from C to C++. I have the following code that is trying to initialize ...
5
votes
1answer
364 views

Help Writing TSR Program(s) in NASM Assembly for DOS

I've been trying to write TSR (Terminate-Stay-Resident) programs (in general) in Assembly (16-bit) for MS-DOS. I've read through a Wikipedia page on TSR and also a page on using it specifically in ...
5
votes
1answer
372 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 ...
5
votes
2answers
319 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
5answers
908 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?
5
votes
2answers
133 views

Low latency capture of button click

I want to have a physical button (not a software button) that I put into my custom rig. When I click this button, I want to receive a signal in my software e.g. by registering my callback function. ...
5
votes
2answers
308 views

What is Interrupt Threading?

(NB: This is not about interrupting Java/.NET threads, this is about kernel-mode interrupts.) Hi, Wikipedia has this to say about Interrupt Threads in the Interrupt handler article: Interrupt ...
5
votes
2answers
192 views

How to write interruptable methods

I have a method which, conceptually, looks something like: Object f(Object o1) { Object o2 = longProcess1(o1); Object o3 = longProcess2(o2); return longProcess3(o3); } Where the ...
5
votes
5answers
2k views

Thread Interrupt

When an Thread.interrupt() is called on some thread, what happens to that thread?
5
votes
4answers
986 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 ...
4
votes
1answer
64 views

Do I have to disable interrupts while in one?

Do I have to disable high interrupts while inside one, if I am using multiple interrupts on the Microchip C18? Consider the code below: #ifndef OTHER_INTERRUPT_H #pragma interrupt InterruptHook // ...
4
votes
1answer
257 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, ...
4
votes
5answers
143 views

Interrupt a sleeping thread

Trying to interrupt a running thread, in this example, t1, which is executed by a thread in a thread pool. t2 is the one that sends the interrupt. I'm unable to stop the running t1, t1 does not get ...
4
votes
1answer
281 views

Can I configure an interrupt for a GPIO pin on a STM32F103ZE chip?

Is there any GPIO interrupt available for STM32F103ZE? I went through the datasheet but didn't find anything related to that. I am new to this processor but recently used TI's MSP430. In MSP430 we ...
4
votes
1answer
104 views

Estimating of interrupt latency on the x86 CPUs

I looking for the info that can help in estimating interrupt latencies on x86 CPUs. The very usefull paper was found at "datasheets.chipdb.org/Intel/x86/386/technote/2153.pdf". But this paper opened ...
4
votes
3answers
137 views

Schedule task on precise periods in Linux or Windows

I have this weird question. I would like to know if it is possible to make a program in C/C++ that will run on Linux or Windows and will hook interrupt handler on a system timer set to specific period ...
4
votes
1answer
234 views

NASM programming - `int0x80` versus `int 0x80`

I have a simple NASM program which only invokes sys_exit: segment .text global _start _start: mov eax, 1 ; 1 is the system identifier for sys_exit mov ebx, 0 ; exit code ...
4
votes
3answers
370 views

Stepper Motor Control Timing

I have a question regarding stepper motor control while using the Microchip TCP/IP stack. In the past I have used a timer for my stepper motor control. I set the period of a timer to the required ...
4
votes
2answers
2k views

8051 external interrupt

how to enable external interrupt of 8051?
4
votes
3answers
971 views

How can I interrupt a synchronized statement in Java?

I have two threads that want to synchonize on the same object. Thead A needs to be able to interrupt Thread B if a certain condition has been fullfilled. Here is some pseudo-code of what the two ...
4
votes
4answers
293 views

Stack size required for bios interrupt call

I am working on a small bootloader for learning purposes. Is there any specification/information available about the (free) stack size required for a bios interrupt call?
4
votes
2answers
1k views

Python Multiprocessing atexit Error “Error in atexit._run_exitfuncs”

I am trying to run a simple multiple processes application in Python. The main thread spawns 1 to N processes and waits until they all done processing. The processes each run an infinite loop, so they ...
4
votes
4answers
1k views

Java equivelant of setInterval in javascript

Basically I want a function to be called every say, 10 milliseconds. How can I achieve that in Java?
4
votes
2answers
1k 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 ...
4
votes
7answers
18k 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 ...
4
votes
4answers
969 views

what interrupt would you hook from DOS to get the real-time clock

what interrupt would you hook from DOS to get the real-time clock
3
votes
2answers
67 views

Calling interrupt() on a Thread, but it's never interrupted

I've written the class VideoProcessor, which does some heavy processing on a video. If "started", a new Thread is created and the reference is saved in the field videoProcessingThread. The problem now ...
3
votes
0answers
28 views

Stack overflows after giving semaphore from ISR in FreeRTOS

I'm trying to use FreeRTOS's xSemaphoreGiveFromISR function and the accompanying portEND_SWITCHING_ISR macro to give a semaphore from within an interrupt that handles the end of an I2C transaction. ...
3
votes
1answer
76 views

Any way of using java.nio.* to interrupt a InputStream#read() without closing socket?

Do you know of a way to interrupt a read from a Java InputStream without closing the associated socket? Here is the current construction strategy for grabbing a socket input stream and converting to ...

1 2 3 4 5 6