1
vote
6answers
66 views
Java Hardware Interrupt Handling
I would like to know if it is possible to automatically invoke a Java method when a hardware interrupt is raised.
3
votes
2answers
378 views
Return from interrupts in x86
I have loaded an idt table with 256 entries, all pointing to similar handlers:
for exceptions 8 and 10-14, push the exception number (these exceptions push an error code automati …
0
votes
0answers
2 views
How to install interrupt handler for IPI in powerpc using MPIC ?
Do CPUs (specifically powerpc) allow an interrupt handler to be installed for IPIs (inter processor interrupts) ? The MPIC I am using supports 4 IPIs per core and it has registers …
0
votes
3answers
74 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 corre …
2
votes
2answers
88 views
Disable Hardware & Software Interrupts
Hello!
Is it possible to disable all interrupts with a ASM/C/C++ program to get full control about the processor?
If yes -> how?
If not -> how do "atomic" operation system calls …
0
votes
2answers
40 views
Windows Interrupt Context
I am doing driver development under Windows (extended with real-time extension RTX from Interval Zero)
Although I don't see anything in the RTX documentation, is there a function …
1
vote
5answers
60 views
Is this thread safe? (shared data without mutex/semaphore)
So this is a very particular question:
I use an embedded system with a single CPU core.
I have one main thread and an interrupt. They share a 32-bit float. The interrupt writes t …
1
vote
4answers
355 views
Problems with IRQs when connecting two digium card in and asterisk box
I have two Digium Wildcard TDM800P with 8 FXO ports each. When I connect both at the same time IRQ misses start showing up making my computer unresponsive and unusable.
One card …
1
vote
2answers
63 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 …
0
votes
2answers
28 views
cp command within php resulted in a partial copy
I have a small PHP script I wrote to help me push changes from staging to production. I run both staging and prod on the same server so my script copies changes from staging folde …
0
votes
2answers
59 views
Regarding interrupt based communication
We have a simple architecture :
Main chip (arm9 based)
PIC controller
The PIC communicates to ARM via an interrupt based I2C communication protocol for transfer of data. Inside …
0
votes
1answer
59 views
ISR - Maximum Data Rate
The interrupt service routine (ISR) for a device transfers 4 bytes of data from the
device on each device interrupt. On each interrupt, the ISR executes 90 instructions
with each i …
1
vote
2answers
126 views
Windows processes in kernel vs system
I have a few questions related to Windows processes in kernel and usermode.
If I have a hello world application, and a hello world driver that exposes a new system call, foo(), I …
1
vote
8answers
506 views
What is INT 21h?
Inspired by this question
http://stackoverflow.com/questions/1237489/how-can-i-force-gdb-to-disassemble
I wondered about the INT 21h as a concept. Now, I have some very rusty kno …
8
votes
4answers
233 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 …
