Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
861 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() : ...
6
votes
3answers
913 views

What happens if another interrupt is raised before the first interrupt action is completed?

This question is from the interrupt handling topic. Suppose an interrupt is being serviced. What happens if another interrupt is raised even before the first interrupt action is completed?
5
votes
2answers
1k views

Detecting the type of iPhone interrupt

I can detect that the iPhone went to sleep and came back from sleep, by using the applicationWillResignActive and applicationDidBecomeActive. But how do I find out what kind of interrupt it was. I am ...
4
votes
4answers
94 views

What is the correct way to stop a thread waiting for network activity?

This question has no doubt been asked in various forms in the past, but not so much for a specific scenario. What is the most correct way to stop a Thread that is blocking while waiting to receive a ...
4
votes
4answers
205 views

Creating interruptible process in python

I'm creating a python script of which parses a large (but simple) CSV. It'll take some time to process. I would like the ability to interrupt the parsing of the CSV so I can continue at a later ...
3
votes
2answers
110 views

printk inside an interrupt handler , is it really that bad?

everybody knows that interrupt handler should be short as possible. and adding functions like printk for debugging inside an interrupt handler is something that shouldn't be done. Actually, I tried it ...
3
votes
4answers
194 views

Linux Interrupt Handling in User Space

In Linux, what are the options for handling device interrupts in user space code rather than in kernel space?
3
votes
2answers
89 views

Custom Interrupt Descriptor Table Confusion

I'm writing a small OS that runs under protected mode. I am coming to a point where I want to load a custom interrupt descriptor table, and I don't know where to start. I have read some stuff on the ...
3
votes
2answers
201 views

Vectored interrupts

What is the difference between vectored and non vectored interrupts? I thought all interrupts had to be vectored interrupts... After all don't all interrupts have a vector number and thus a vector ...
3
votes
1answer
401 views

Difference between an IRQ and interrupt vector in linux kernel

I am a little confused over IRQ and vector when it comes to working at the kernel API's. I want to use vector 0xfa for some interrupt handling which will be generated by a programmable lapic. I ...
3
votes
4answers
487 views

what is meant by disabling interrupts?

When entering an inteerupt handler, we first "disable interrupts" on that cpu(using something like the cli instruction on x86). During the time that interrupts are disabled, assume say the user ...
3
votes
1answer
289 views

MIPS assembly to determine whether hardware I/O interrupt has occurred?

In my MIPS32 exception handler, I want to determine whether the exception was caused by a I/O interrupt. The Cause register bits 2-6 inclusive has to be checked. What's the MIPS assembly code to ...
3
votes
5answers
903 views

Interrupting a thread that waits on a blocking action?

I am running a thread whose main action is to call on a proxy using a blocking function , and wait for it to give it something. I've used the known pattern of a volatile boolean and the Interruption ...
2
votes
3answers
69 views

How do I debug unexpected resets in a STM32 device?

I'm doing some development in C with a STM32F107 chip and, at some point, the device began to reset when I call a specific function. I don't have a debugger and my debugging is just plain text over a ...
2
votes
3answers
65 views

Strange behavior from interrupt service routine

I'm writing an interrupt service routine which is supposed to process interrupts caused by RTC using int 70h and IRQ8 for use with some timer. Unfortunately, I've been having lots of problems with ...
2
votes
1answer
75 views

iPhone returns to black screen after sleep interrupt during splash screen

I've got a strange bug going on that seems to be OS related : If I give a sleep interrupt to my device while the OS controlled splash screen, Default.png, is displayed, and then immediately wake the ...
2
votes
2answers
71 views

why interrupt() not work as expected and how does it work

I want to interrupt a thread, but invoke interrupt() seems not work, below is the sample code: public class BasicThreadrRunner { public static void main(String[] args) { Thread t1 = new ...
2
votes
1answer
99 views

Call Int 13h in a ISR

I have written a ISR for int 9h by assembly in Real Mode. In this ISR, I call INT 13h, AH=0x02 for writing some data on Hard Disk. But data aren't written on Hard Disk. Also int 13h, ah=0x02 doesn't ...
2
votes
2answers
671 views

Pin Change Interrupt - External Interrupt with Internal Interrupt

Here in the program, am cycling through LEDs using timer interrupt & if someone presses a switch, it should stop the first interrupt & trigger second one that should lit the led according to ...
2
votes
3answers
473 views

What happens if I disable an interrupt inside of its ISR?

What happens if you disable an interrupt inside that interrupt's ISR? For example, if I am transmitting data over USART from a buffer and that buffer runs out of data then I want to stop transmitting ...
2
votes
1answer
151 views

how do I block all IRQ's during short (5ms) frame data transfer

I am an old hand with hardware and device drivers and used much earlier Linux versions for hardware control. I am recently back in the game of Linux and device control using embedded processing and ...
2
votes
5answers
635 views

int 13h in windows protected mode?

Hi to all Could we use the Int 13h (direct disk read/write) in Windows operating systems or does the windows protected mode not allow us, and if so is there a work round? Thanks in advance.
2
votes
2answers
785 views

Interrupt Handling on SMP Systems

Are Interrupts assigned to a fixed CPU (always handled by the same CPU)? To put my question in context: From: http://msdn.microsoft.com/en-us/library/ms795060.aspx The spin lock that protects the ...
2
votes
2answers
764 views

How To Let Java Handle System Interrupts Like Ctrl+C

I have a java program which creates a lock file to ensure that no other executions run at the same time as it. If the program runs it creates the file, and upon exit, either successful or via an ...
2
votes
3answers
486 views

Real Mode, Interrupt vector replacement Crashing

I'm trying to learn more about how systems really work underneath all the pretty graphics on top. So I'm currently playing with memory in the 512bytes that the BIOS loads on startup, can't really call ...
1
vote
1answer
48 views

Setting up Interrupt Vector Table, ARMv6

I'm trying to use usermode and SVC in my ARMv6 bare metal application, but for this I need to set up the SVC entry of the ARMv6 interrupt vector table to branch to my interrupt handler. But, I can't ...
1
vote
1answer
54 views

What is the best way to implement my program for Keil MCB1700 evaluation board?

I want to develop a program for MCB1700 evaluation board. Client software of PC reads a picture from HDD. Then it sends the picture to MCB1700 evaluation board through socket (Ethernet). Server of ...
1
vote
1answer
75 views

Interrupt handling in linux. Interrupts sharing

Here's my question. Manuals say: "when the kernel receives an interrupt, all the registered handlers are invoked." And I wonder if there is any rule, specifying an order in which handlers will be ...
1
vote
0answers
24 views

Do I need to do some special setting for Virtual Legacy Wire in Linux kernel?

In my x86 main board, I connect some special interrupt sources (including NMI) to the south bridge chip. In the datasheet of the chip, it says that these interrupts are sent to CPU via virtual legacy ...
1
vote
2answers
175 views

Replacing the Timer Interrupt Handler in DOS With GNU (GCC and GAS)

As the title suggests, I'm trying to replace the existing handler for the Timer interrupt in DOS with one of my own. After searching far and wide for a variety of solutions, I found some Assembly code ...
1
vote
1answer
438 views

Avr-gcc: Timer/counter interrupts conflicting with UART?

Please consider the following example (tried on Arduino IDE 0022, Ubuntu 11.04, Arduino AtMEGA 2560), where I'm trying to start a timer/counter interrupt and use the Arduino Serial class at the same ...
1
vote
2answers
139 views

Trouble reading memory

When I run my code through the debugger, after a series of steps it eventually gets lost and executes commands out of order. I'm not sure if the stack is overflowing or what. This is the error I ...
1
vote
3answers
273 views

Floating point operations in interrupt handler (PowerPC, VxWorks)

I haven't found any resources that exactly answer what I am trying to understand with an issue I saw in a piece of software I am working on, so I'll ask the geniuses here! For starters, I'm running ...
1
vote
2answers
1k views

perl invokes shell— interrupt ^C stops the shell, not the perl

I want to use a Perl script to batch a repetitive operation which is invoked with system(). When something goes wrong and I want to interrupt this script, the ^C is captured by the shell, stopping ...
1
vote
3answers
135 views

How to create an interrupt table

I have a homework assignment for my Operating Systems class where I need to write an interrupt table for a simulated OS. I already have, from a previous assignment, the appropriate drivers all set up: ...
1
vote
1answer
160 views

Doing interrupt chaining assignment

As the title says I'm trying to do the interrut chaining. What I'm looking for is that when the Timer Interrupt (IRQ 0) is called, and the interrupt handler (ISR) finishes it executes my code. I'm ...
1
vote
1answer
650 views

openAL streaming & interruptions

I made an iphone application which uses OpenAL to play many sounds. These sounds are in mp3, quite heavy (more than 1mn)and I stream them (2 buffers per sound) in order to use less memory. To manage ...
1
vote
2answers
403 views

Interrupt Descriptor Table (IDT)modification

In the flow of control in linux kernel, found that control moves to IDT which has the location of interrupts(ex: 0x80 system call). And then control moves to the appropriate System call. Also read ...
1
vote
1answer
109 views

mono + hardware interrupts / signals

i am working on embedded devices where it is common that you handle some hw interrupt events with c code (like catching a pressed button, or let some LED´s blink), i was wondering if anybody has some ...
1
vote
1answer
249 views

Question regarding the interrupt and interrupt handling

Could you please let me know how the hardware/driver raises an interrupt? and in an SMP, which CPU gets interrupted? If IRQ is shared by multiple devices, how the kernel identifies the which device ...
1
vote
2answers
73 views

Could someone please help me with some Operating System concepts I cannot grasp - re Interrupts

Sorry, I wasn't sure if this was a suitable place to ask this, but I hope it is acceptable, apologies if it isn't ! :) I am currently doing a module in Operating Systems theory and I have a few ...
1
vote
1answer
135 views

Blocking or sleeping an interrupt handler

Assume: 1) Multi-cpu environment 2) Process that gets interrupted, is the same process that executes the interrupt handler, so I guess technically nothing gets interrupted except what the process was ...
1
vote
1answer
49 views

Distributed interrupts

I'm just looking for info on how the os handles interrupts in a distributed environment.
1
vote
2answers
376 views

Some sort of Ruby “Interrupt”

So here's what I'm doing -- I have a ruby script that prints out information every minute. I've also set up a proc for a trap so that when the user hits ctrl-c, the process aborts. The code looks ...
1
vote
2answers
267 views

what is the best way to stop a thread in java?

I would like to stop a thread in mid execution. From reading around, I am of the thought I will have to check a local variable to determine if the thread should continue or clean up and exit run(). ...
1
vote
1answer
541 views

How do I enable and detect interrupts with this hardware IO card?

I have the following card and cannot get interupts working. I may not be understanding how they're supposed to work correctly... I don't do this type of programming very often. From the looks of it ...
1
vote
1answer
127 views

Interrupt handlers executed in a different thread?

I wanted to know when the processor get's interrupted and an ISR (interrupt service routine) is executed, is that executed in the context of the thread that was interrupted to handle this interrupt or ...
1
vote
4answers
269 views

IRQ Numbering Conflict

From: http://software.intel.com/en-us/articles/introduction-to-pc-architecture/ Exception number 10h corresponds to a "Floating Point Error" but software interrupt 10h also corresponds to "Video ...
1
vote
4answers
278 views

process scheduling question

For example, a process waiting for disk I/O to complete will sleep on the address of the buffer header corresponding to the data being transferred. When the interrupt routine for the ...
0
votes
2answers
40 views

Location of interrupt handling code in Linux kernel for x86 architecture

I am doing so research trying to find the code in the Linux kernel that implements interrupt handling; in particular, I am trying to find the code responsible for handling the system timer. According ...

1 2