In computing, an interrupt is an asynchronous signal indicating the need for attention or a synchronous event in software indicating the need for a change in execution.
1
vote
0answers
18 views
when polling is better than interrupt?
I was looking at this pic:
and have 2 questions regarding it:
1. how much faster should a disk be in order for polling to be refered over the interrupt?
I thought that beacuse of the ISR and the ...
0
votes
0answers
6 views
iPad always get audio interruption while playing YouTube video in uiwebview
I have an iOS APP which can play YouTube video in UIWebView.
Here's my audio session:
AudioSessionInitialize(NULL, NULL, audioSessionInterruptionListener, (__bridge void *)(self));
...
0
votes
0answers
7 views
How parallel port gives continuous interrupt?
I had make a driver of parallel port. Now i want to give an interrupt from parallel port.
I had a hardware which has switch between DATA pin 8 and ACK.
Now if i make IRQ pin of CONTROL Reg pin 4 at ...
0
votes
0answers
6 views
When to Use a Predominantly Polled or Event-Driven Architecture for Embedded Solutions
I've been developing embedded projects for a number of years now and, without an RTOS, I generally design them to use as much event-/interrupt-driven functionality as possible so that I maximise the ...
2
votes
4answers
75 views
Interruptable for-loops
I'm currently trying to implemenent interruptable Jobs.
The job in general looks like this
public abstract class Job
{
private boolean interruptFlag;
public boolean isinterrupted()
{
...
0
votes
0answers
7 views
higher cpu usage shown on task manager
I found the process system always occupy high cpu usage on task manager, how can i check it because it just shows the system name, none of information provide, can any command / software show message ...
1
vote
1answer
32 views
How to Interrupt/Stop/End a hanging multi-threaded python program
I have a python program that implements threads like this:
class Mythread(threading.Thread):
def __init__(self, name, q):
threading.Thread.__init__(self)
self.name ...
1
vote
2answers
47 views
Is cache miss a kind of interrupt/fault
We know that a page miss in memory will bring a page fault, and the page handler must load the page into the physical memory. Here I wonder whether a miss in a cache is also a system fault? If not, ...
2
votes
1answer
51 views
Can the Linux Linked List API be used safely inside of an interrupt handler?
I am writing a device driver for a custom piece of hardware using the Linux kernel 2.6.33. I need am using DMA to transfer data to and from the device. For the output DMA, I was thinking that I ...
0
votes
0answers
24 views
Handle Ethernet interrupt in DOS
Is there such thing as Ethernet interrupt in C under DOS for incoming data?
I have written an application that waits for incoming data in my "while(True)" loop and it works perfectly. But I want to ...
0
votes
1answer
13 views
Who's calling my interrupt handler if I have both CIAs turned off?
I'm trying to set up a simple raster interrupt handler to change the background color in a given stripe. However, my interrupt handler seems to be called all the time. (the code uses CA65's format)
...
0
votes
2answers
43 views
In MQ v6 api - how to stop MQQueue get() method?
I'm writing a simple Java application using MQ v6 API classes
Right now I'm able to browse a remote queue in while cycle. This program runs as windows service, and must be interrupted then the ...
1
vote
1answer
40 views
“Thinking In Java” concurrency CloseResource.java
I'm reading the book 《thinking In java》(Fouth Edition) and find a question about the source code concurrency/CloseResource.java . When the socketInput.close() method throws an InterruptedException, ...
0
votes
0answers
58 views
PIC interrupt based soft UART timing trouble
I've tried to implement a software UART on a pic 18F452 using timer interrupts - although I'm a begginer with microcontrollers - and I can't get the timing working. I'm using MPLAB asm for compilation ...
0
votes
0answers
11 views
How can I get the corresponding MSI message in an interrupt?
We are using an FPGA on a PCIe card. I am able to reserve the proper resources and the MSI interrupt fires correctly. My problem is discerning the interrupt sources from: My Linux driver receives only ...
1
vote
3answers
59 views
Threads in Java getting NullPointerException
I'm just trying to call a thread in java. I want to check if the thread is interrupted or not. The thread is defined in class "Scheduler". Here's the code:
if (flag == true)
{
...
1
vote
2answers
61 views
How to generate a steady 37kHz GPIO trigger from inside linux kernel?
I have a micro controller taking care of infrared TX-carrier wave generation currently, but I started wondering if I could dispose of it, and do this work in linux side - thus bringing the cost of my ...
0
votes
3answers
46 views
Calling and using the .interrupt() method?
How exactly do i call the .interrupt() method? When I have Thread.sleep(1000), when and where do I call the .interrupt() method? is it after? What I want to do is stop Thread.sleep(1000) midway.
...
1
vote
2answers
52 views
Stop Thread right after one Minute
I have a JButton to invoke my thread. But what I actually want to do is to stop the thread just after the one minute!
My actionListener Method is:
private void ...
0
votes
2answers
80 views
Interrupt works too fast on the Arduino
I know this sounds a bit funny :). But I am trying to eliminate possibilities:
On the Arduino Uno I have attached an interrupt triggered on HIGH to a routine which only increments a volatile defined ...
0
votes
0answers
16 views
Possible to reboot linux instead of locking up serial port 8250.c
This question is in reference to the linux 2.6.10 kernel running on a Phytec LPC3180 ARM9 processor. We have observed that on occasion the kernel does not successfully complete booting due to a ...
0
votes
1answer
33 views
timer interrupt thread python
I've been trying to make a precise timer in python, or as precise a OS allows it to be. But It seams to be more complicated than I initially thought.
This is how I would like it to work:
from time ...
0
votes
0answers
27 views
mysql load data local infile command issue:autoincrement interruption
i load data from csv file;but there is no continuity between two import operations
two import operations one from 30 to 34 the other from 37 to 41
30,31,32,33,34,-----37,38,39,40,41
what about ...
0
votes
1answer
32 views
NASM: emit MSW of non-scalar (link-time) value
I am attempting to define a constant IDT (Interrupt Descriptor Table) entry in NASM, and to do so, I need to emit into a data table the high word of a double-word address that is not resolved until ...
0
votes
3answers
58 views
Check if a thread is interrupted?
I just want to get know about if this thread is interrupting or not if I'm doing it right?
please give me hint if I'm wrong
public void run(){
int i;
...
0
votes
2answers
64 views
Stopping a Java Thread with heavy DB operations
I'm using a third party library in my thread which involves some heavy DB operations .
Sometimes due to the lock on the DB or any other reasons execution of thread gets stuck . I want to kill the ...
4
votes
5answers
110 views
What is (void (**) ()) and how to typedef it?
In an embedded code I have to understand, there's this line of code :
*((void (**) ()) 0x01) = c_int01; /* Write the interrupt routine entry */
I can grasp the fact that you setup the interruption ...
1
vote
0answers
48 views
How to detect a usb host connection on a usb device system in C?
I am pretty new to Linux so I apologize if I will ask some really simple stuff.
I am working on a custom board with SAM9G25 and Angstrom distribution as operating system.
The board as to act as a USB ...
1
vote
1answer
50 views
Why is a callback flag being cleared and/or corrupted without apparent cause?
I am writing an SD card SPI driver for a processor. I know the SPI driver is good because I also use it for an LCD and, until now, have been sending commands merrily to the card. I am having trouble ...
5
votes
1answer
81 views
How do you provoke a floating point error in 32 bits
How do you provoke a floating point error in 32 bits (commonly known as coprocessor error [INT 16 :8086].
1
vote
2answers
169 views
C# read only Serial port when data comes
I want read my serial port but only when data comes(I want not polling).
This is how I do it.
Schnittstelle = new SerialPort("COM3");
Schnittstelle.BaudRate = 115200;
...
0
votes
2answers
37 views
Capturing Specific Parts of InputStreamReader in Java
So I'm working on a minor GUI that pings from the command line an IP that is selected from the IP list. I have this working and returning to an output via the getInputStream.
Here's the code I have ...
0
votes
0answers
43 views
interrupt service routine crashes on iret
I am working on an interrupt service routine for a 32 bit protected mode kernel I was writing (with the help from GPL codes from the net; from GazOS). I am working on the IDT and enabling of irq 1 to ...
0
votes
1answer
84 views
How to implement a stack containing function call for a PIC in C
I'm currently programming a PIC in C with MPLAB X (+ compiler XC8)
In my code, I have some interruptions (inter1, inter2, ..) which are each composed of urgent and non-urgent operations (urg1, urg2, ...
0
votes
0answers
12 views
Is there any type of interrupt that will not restore the register content?
I am facing an issue with the context switching. After switching the contents of the registers are not restored.
So, Is there any type of interrupt that will not restore the register content?
1
vote
1answer
61 views
Can't access /proc/interrupts after free_irq
I am writing a kernel v4l2 driver for an ov7670 CMOS element attached to GPIO pins on a Raspberry Pi. I set up three IRQ lines (Pixel, Href, and Vsync)
Here is how I am requesting them:
ret = ...
0
votes
0answers
43 views
MSI-X interrupts in WDF
I'm having a lot of trouble getting MSI-X interrupts implemented in a Windows bus driver we're writing in WDF / KMDF.
I've read the MSDN documentation, and there's not really a lot of helpful info ...
1
vote
1answer
115 views
How to send a control-break (or equivalent signal) to console application process in .NET?
Suppose I start a Process for running a console application like 7z.exe (7-Zip Archiver). I am creating the Process without a window and I'm redirecting the standard output.
I want to know how to ...
0
votes
1answer
34 views
How to stop a process and begin other process without returning to the initial Process in Arduino
I desire to construct a Hexapod which utilizes Arduino and is remotely controlled via Bluetooth, at present I am writing the code for its walking(in Arduino part),however I do not know how to ...
1
vote
1answer
51 views
How can I surpress GCC warnings for no prototypes for interrupt routines when -Wmissing-prototypes is used?
I'm writing embedded code in C using MPLABX (IDE for Microchip products) and the XC16 compiler (which is based on GCC).
I'm using -Wmissing-prototypes to make sure that I have prototypes for all of ...
0
votes
5answers
62 views
HowTo- thread stop
just a little question, i want to stiop the following thread, but i have no idea how i should do. Please help me. Googles help wasnt useful this time.
new Thread(){
public void run() {
...
0
votes
1answer
125 views
Timer interrupt in C
I have to write a c file which is about timer interrupt.Program will run on DosBox.
Features of program is simple :
Program call a function(which is typed by me) for each timer interrupts.And ...
0
votes
3answers
83 views
How to synchronize Thread.sleep and Thread.interrupt in Java?
I would like to write a test to interrupt a thread when it is executing an interruptible call, e.g. Thread.sleep.
I would like to synchronize two threads: one thread calls Thread.sleep and another ...
8
votes
3answers
111 views
How does wait know about interrupt in Java?
Thread.interrupt interrupts such calls as sleep, join and wait. I wonder how it is exactly implemented.
I know Thread.interrupt sets a flag isInterrupted. Does wait just polls this flag ? I hope it ...
0
votes
0answers
16 views
Renesas H8SX1664: How to get IRQ3 detected
After trying 2 full days to get it to work, I need some help!
I have the H8SX1664 microcontroller and I'm trying to detect an external interrupt on port P1.3 (=IRQ3).
I have done the following:
...
0
votes
1answer
9 views
Can someone please tell me in Big Bird terminology what a clock interrupt is?
I also am having a hard time understanding how I/O interrupts work, but I have a better handle on them than I have on clock interrupts. Thanks my nerds!!!
0
votes
0answers
35 views
Interrupt CSS transition by jquery event click and cancel reversing
.trans{
-webkit-transition:background-position 0.2s;
}
I have nav menu items and added the transition above to each of them.
Also JQuery hover functions as:
$(".menuUL li").mouseover(function () {
...
0
votes
1answer
25 views
do UIPanGestureRecognizer while playing UIAnimation
I set animation effect after do panning object
-(void)panView:(UIPanGestureRecognizer*)recognizer{
//do sth...
if(recogizer.state==UIGestureRecognizerStateEnded){
[UIView ...
0
votes
2answers
56 views
How interrupt a Linux proccess using Java
I have a process generator that make some processes working in linux (this code is by java) but during these processes working I want to make some interrupt to change the process config.
If I use an ...
1
vote
1answer
73 views
msp430g2452 trouble capturing interrupt from switch
I am trying to write some code for an msp430g2452 mcu. It should cycle through a few modes of led's being on or off using an interrupt and a switch statement. I am only just beginning to learn to ...




