The interrupts tag has no wiki summary.
1
vote
3answers
38 views
about Interrupts in java
Directly from this oracle tutorial:
Interrupts
An interrupt is an indication to a thread that it should stop what it
is doing and do something else. It's up to the programmer to decide
...
1
vote
1answer
84 views
How to determine the IRQ number for a USB device?
I am new to driver development. However, I purchased an OSR USB FX2 Learning Kit, which comes with sample codes for Windows kernel/user mode driver. However, I am writing the driver in Linux (Ubuntu ...
3
votes
1answer
96 views
How can I send data packets into the network without using sockets?
I want to send data packets into the network bypassing the Linux network stack. I mean is there any way where I can interrupt the network card driver and place a frame in the network card buffer ...
0
votes
1answer
103 views
Atmega8535 INT0 INT1 INT2 INT3
I am using Atmega8535 microcontoller and STK200 development board, I am trying to use more than one external interrupt, but for some reason only INT0 works and others do nothing, here is the related ...
0
votes
0answers
59 views
Setting CPU Affinity for a hardware interrupt in Linux
I would like to set up an interrupt affinity for a particular hardware interrupt. I know that all the hardware interrupts are handled by CPU0 by default in a SMP system, so i would like to change this ...
0
votes
1answer
90 views
Assembly - using more than 2 buttons for interrupts?
I am using STK200 board with Atmega8535 microcontroller. I use INT0 and INT1 buttons as external interrupts, but in order to initialize INT0 I have to set bit 6 to 1 and to intialize INT1 I have to ...
2
votes
1answer
235 views
Enabling Interrupts in U-boot for ARM cortex A-9
I am trying to configure a GPIO interrupt in the uboot, This it to test the Interrupt response time without any OS intervention (Bare-metal). I was able to configure the pin-muxing and also successful ...
3
votes
2answers
304 views
How does ARM switch to svc mode in IRQ handler?
The following code snippet is taken from linux v2.6.11. Something similar is present in v3.8 as well.
mrs r13, cpsr
bic r13, r13, #MODE_MASK
orr r13, r13, #MODE_SVC
msr spsr_cxsf, ...
1
vote
2answers
71 views
Processor Manager and Job Interrupts
This is a question from my homework in CIS-21: Operating Systems class, and I already have an answer, because the instructor gave it to us, but he did not want to explain why THIS was the answer. So ...
0
votes
1answer
266 views
Setting Timer interrupt in 8051, getting stuck
Hi i am trying to set up an overflow timer interrupt on Timer 3 of an 8051. The code is getting stuck in the interrupt routine. i am using the 2511F32 (wixel)
Here is the interrupt setting code:
{
...
0
votes
0answers
31 views
dangerous interrupts
Let's say we have a fictional operating system in the user mode. Whenever an interrupt or a trap occurs, the os would switch to the Kernel mode jumping to the address determined from the interrupt ...
-1
votes
1answer
106 views
Long Running Process
I quickly wrote this little rinky-dink vb.net console app to demonstrate something to someone. When I got to looking at it I thought there must be a better way than eating up cycles by using
While ...
0
votes
0answers
27 views
Seeking better understanding of role of spinlock protrection of crtical code sections in interrupt handlers (arm9, linux)
We have an arm9 (Phytec LPC3180 running linux 2.6.10) that uses a GPI pin for notification of interrupts from an I2C serial chip (MAX3107). Most of the example interrupt handling code I've found on ...
0
votes
0answers
126 views
How can I make a screen blink in TSR program?
I have written a program which acts as a screensaver i.e after 10 seconds all the command prompt screen is cleared if no keyboard button is pressed. In short I have hooked Timer and Keyboard ...
1
vote
2answers
96 views
Why does this quit immediately on SIGKILL?
When I press Ctrl-C, the following code terminates immediately.
However, it seems that the loop should exit after a 10 second delay - because it is not checking the status of keep_going until we ...
4
votes
2answers
106 views
Purpose of self-IPI on IA-32
What is the purpose of a processor sending an Inter Processor Interrupt to itself on the IA-32 architecture?
According to the Intel IA-32 Architecture Software Developer's Manual, Vol. 3, Ch. 10.1:
...
2
votes
0answers
19 views
How to assing IO memory and IRQs
I need to provide memory and IRQ resources to the Linux kernel in order to bring up the CAN controller. Have no idea how to get them.
Below is the structure I need to fill in. This structure I have ...
5
votes
3answers
692 views
Signals and interrupts a comparison
Based on various references, my subjective definition of signals in Linux is "The triggers that are used to notify the processes about an occurrence of a specific event.Event here may refer to a ...
0
votes
2answers
212 views
C++ Interrupts?
I was wondering if C++ had any way of doing interrupts. I want one program to store information in a text file, while the other one prints a statement depending on what is in the text file. Since I ...
0
votes
0answers
45 views
Difference between the handling of signals and interrupts
I know that Signals are Software Interrupts like exceptions in some languages and Hardware Interrupts are the interrupts created by the CPU itself.
I want to know the difference between the steps that ...
4
votes
1answer
257 views
tail-chaining of Interrupts
what is tail chaining of Interrupts which is supported by NVIC in ARM Cortex M3.
1
vote
1answer
314 views
Arduino: interrupt expensive function and resume another
As a first project I plan on making a teensyduino ambient light with different light modes, which are checked in a big switch statement - now I want to switch from one mode to another by pressing a ...
0
votes
2answers
123 views
How exactly does Thread.interrupt() and Thread.interrupted() work? [duplicate]
I am not clear regarding these two methods from the perspective of setting the status of the thread.
Java Docs say that Thread.interrupt() sets the threads interrupt status flag and calling the ...
10
votes
2answers
355 views
What happens when a mov instruction causes a page fault with interrupts disabled on x86?
I recently encountered an issue in a custom Linux kernel (2.6.31.5, x86) driver where copy_to_user would periodically not copy any bytes to user space. It would return the count of bytes passed to ...
0
votes
1answer
137 views
error: expression syntax error
Hi I have a problem with compiling my x86 assembler code, im using nasm to compile but the compiler tells me that the syntax is wrong. I don't understand it since im using a simple label and jumping ...
1
vote
2answers
608 views
How does INT 10, 13h work with attributes?
Hey Im trying to understand the INT 10h, 13h (19) that writes a Character String with the BIOS interruption 10 with 13h in ah. I have found the info below about the different flags to put in the the ...
1
vote
1answer
229 views
How does VxWorks prioritize interrupt bottom-halves?
Suppose I have two tasks, 'A' and 'B', of differing priority executing on SMP-supported VxWorks. Both 'A' and 'B' issue a command to an I/O device (such as a disk or NIC) and both block waiting for ...
0
votes
1answer
211 views
Interrupt Coalescence
Thought it is known to occur for high speed networks like Gigabit Networks, still wanted to know what are the typical speeds at which we are looking for this phenomenon to occur. Can it occur on ...
2
votes
2answers
599 views
TI MSP430 Interrupt Problems After UART Code Port
I am using the MSP430F2013 processor for an application, which doesn't have a UART. I need a UART, and so I used the TI's sample code "msp430x20x3_ta_uart2400.c" to emulate one using the Timer module. ...
1
vote
1answer
137 views
the interrupt 10h
There are so many services which can be used with the interrupt 10h,
I'd like to ask the question about two of them whom with i am confused
First is,
AH = 06H SCROLL UP WINDOW
AH = 07H SCROLL ...
1
vote
1answer
1k views
How do interrupts work on multicore ARM cpu
This question has already been answered for x86 however, I couldn't find much about ARM MP cpus like Cortex-A9, Cortex-A15 etc...
More importantly i want to know if interrupts can be raised on ...
0
votes
0answers
41 views
Does Intel VT host need IDT?
From the intel manual,we knew that extern interrupts will cause VMM GUEST VMM-Exit ,
and VMM HOST can inject interrupt through VMM-Entry,so interrupts can be handled in the VMM GUEST.
I want to know ...
0
votes
1answer
631 views
Enable GPIO wakeup in Embedded Linux
I'm trying to enable wakeup event for GPIO on embedded Linux, after searching for a while I figured how to do it, but when I try this:
echo enabled > /sys/class/gpio/gpio<n>/power/wakeup
I ...
0
votes
0answers
148 views
Linux Event Handling: Mouse Detection
I am trying to write a script that will disable the touchpad when a USB mouse is connected. I am using 'jupiter' to disable the touchpad. ...
1
vote
0answers
46 views
Theory: IRQ synonymous [closed]
Interrupt Channel - Interrupt Line - Interrupt Request - IRQ are all synonymous? If not, which are the differences? I found a lot of conflicting definitions on internet about those terms, including ...
2
votes
3answers
925 views
do system calls execute inside a software interrupt handler in entirety?
Do system calls execute in the context of a software interrupt handler in entirety?
I mean, some system calls like read() could take a long time to return, against the policy that ISR should be very ...
0
votes
1answer
1k views
ARM Cortex M3 GPIO Interrupts - One ISR per port with 8 pins - How to handle all pins?
I'm using the Luminary LM3S8962 micro-controller and its included Library Guide, but this should be relevant to any ARM Cortex-M3s that have Nested Vector Interrupts.
You can only register one ...
3
votes
2answers
114 views
Why do these arrangements of embedded c code perform so differently?
Background
I am working with and 8052 based microcontroller. I have an LCD and and encoder wheel hooked up. The user can navigate a menu displayed on the LCD by rotating and pressing the encoder ...
2
votes
1answer
285 views
x86 Interrupt Table Modification
I'm writing my own protected mode operating system and need to know how to modify the interrupt table so that certain ones (print string, etc.) are redirected to the command prompt application or ...
3
votes
2answers
495 views
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 on is getting all of the Threads to correctly handle being interrupted instead of ...
2
votes
0answers
421 views
How to check if my CPU is banned from interrutps in the /proc/interrupts file? [closed]
I am running irqbalance with the option IRQBALANCE_BANNED_CPUS=3e, which means ban everything but cpu0 (111110). Now I want to make sure it is working but when I check the file /proc/interrupts I see ...
3
votes
2answers
1k views
Arduino Serial Interrupts
I am working on an Arduino Mega 2560 project. At a Windows 7 PC I am using the Arduino1.0 IDE. I need to establish a serial Bluetooth communication with a baud rate of 115200. I need to receive an ...
0
votes
0answers
206 views
UART and FSK implementation of C8051F996
I am trying to send a UART signal but FSK encoded. I have the UART working, with baud rate 290. I am sending on P0.7TX. When hooked up to a computer, I get the expected results. However, I would like ...
2
votes
1answer
600 views
How can I avoid preemption of my thread in user mode
I have a simple chunk of deterministic work that only takes thirteen machine instructions to complete. Because the first instruction takes a homemade semaphore (spinlock) and the last instruction ...
9
votes
4answers
927 views
Is a preemptive multitasking OS possible on the interruptless DCPU-16?
I am looking into various OS designs in the hopes of writing a simple multitasking OS for the DCPU-16. However, everything I read about implementation of preemptive multitasking is centered around ...
1
vote
0answers
413 views
Handle keyboard interrupts by polling interrupt request register (for x86)
I need to develop program for x86 that will handle keyboard interrupts by polling IRR. Program should work in real-mode under ms-dos. My main issue is that it don't work as I think it should work: ...
0
votes
1answer
153 views
IDT done in C is not working
I am not being able to get IDT working because my Interrupt routines are not getting called, especially the keyboard related one when i press a key on keyboard. I am passing the IDT table's special 48 ...
1
vote
2answers
573 views
pressing on the arrows keys shoots two Keyboard interrupts ? ( int 09h )
I'm learning about interrupts and keyboard hardware interrupts such as interrupt 9 ( in dos ).
and I noticed that if I press on an arrow key ( left, right, up, down ) then there will be two ...
2
votes
1answer
196 views
Reprogramming interrupt in c/asm x86
My problem is that I have to reprogram interrupts without using system libraries like dos.h, so I can't use functions like getvect or setvect. I have made working program in C (with asm inserts) but ...
0
votes
0answers
97 views
Linux load formula?
This question could be posted at serverfault but I bet developers know more about the internals within Linux.
What is the exact formula Linux uses for calculating load?
In most instances CPU ...


