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
1answer
56 views
caller in interrupt
What is the rule for the content of caller called from within an interruption? When I run the following code:
File: test
1| def a; b end
2| def b; c end
3| def c; loop{sleep(1)} end
4| def d; e end
...
0
votes
1answer
77 views
Webfaction:: My site seems to be interrupted by other one, just showing “OK” text
My site usually works well but sometimes just show just simple "OK" text.
I don't know what is wrong.. and it seems very odd.
Webfaction and My site use Nginx as a server, but when my site is ...
2
votes
1answer
326 views
How to simulate interrupts in C/C++?
I am trying to design an artificial learning unit. Naturally I want to simulate the model before microcontroller implementation. The main issue with simulation is trying to simulate microcontroller ...
1
vote
2answers
152 views
Can I use executorservice to kill a specific thread if it's been running for too long?
So far in my experiments with the executorservice I've had a lot of advice that involves using future.get, and then future.cancel in order to throw a thread interrupt which then needs to be caught in ...
0
votes
1answer
80 views
Jetty interrupting connection
I have a application that return a long request that returns a stream (a huge json)
The application is written in Java and I'm using Jetty as server.
The problem is after sometimes getting data, it ...
1
vote
1answer
252 views
MSI and MSI-X vectors support
Where exactly can I find in the Linux kernel code the limit set for MSI and MSI-X supporting 32 vectors and 2048 vectors respectively ?
0
votes
1answer
172 views
enter low power mode within u-boot, wake up on interrupt
I try to implement a low power "deep sleep" functionality into uboot on button press. Button press is handled by linux and a magic code is set to make u-boot aware of the stay asleep do not reboot"
...
0
votes
2answers
110 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 ...
1
vote
0answers
335 views
How kernel notify a user space program an interrupt occurrs
I'm writing a user space program and a kernel space device driver.
Goal: Once an interrupt occurs, user space program needs to do something quickly.
My naive method: User space program uses ioctl to ...
0
votes
1answer
90 views
Mimic an interrupt without activating an interrupt
Is it possible to mimic the actions of an interrupt without activating the interrupt.
The reason why I ask is because the micro controller I am using only allows one interrupt to me active at any ...
1
vote
1answer
96 views
Low-memory addresses 0x4c and 0x4e
Im trying to reverse mbr rootkit and faced a problem with low-memory addresses 0x4c and 0x4e.
I have no idea about their destination.
[0x000000000009f51c] 9f40:011c (unk. ctxt): xor ax, ax ...
0
votes
0answers
101 views
how to find out the reason causing an STM32F103 chip to enter system memory sector after SIGINT
I am working on an STM32F103 chip.
First break point is set at the entrance of main(). It has never been reached.
In gdb, I manually stop the program running and gdb reports the PC count is ...
7
votes
2answers
133 views
Statically Defined IDT
I'm working on a project that has tight boot time requirements. The targeted architecture is an IA-32 based processor running in 32 bit protected mode. One of the areas identified that can be improved ...
0
votes
1answer
53 views
Writing to OC8R/RS causes INT4 to unexpectedly trigger
The title is pretty much self explanatory. When I write to the Output Compare Register (OC8RS or OC8R), an interrupt on the External Interrupt INT4 pin is triggered. I'm using the Timer3 & OC8 ...
0
votes
0answers
161 views
Disabling/Enabling Interrupts: Cannot build
After trying for quite some time, I cannot get to build my code with spin_lock_irqsave(...) and spin_unlock_irqrestore(...) calls. I have included #include <linux/spinlock.h>, which I believe is ...
1
vote
1answer
238 views
soft vs. hard interrupt handle timing in Linux
I'm converting some software from using a physical HW device, to a total software simulation, and right now I'm looking at the interrupt handling portion.
When this code was driving physical HW, it ...
-1
votes
1answer
142 views
software Interrupt vs software exception [duplicate]
Possible Duplicate:
Interrupts and exceptions
Can anybody explain what is the difference between software interrupt and software exception?
Interrupt: means time slice expires, call ...
0
votes
2answers
117 views
ant android , skip install if no device present
when using ant to install android apps, it will hang if there is no android device connected to the machine. It will just wait for the user to connect one, which interrupts the autonomous nature of ...
0
votes
1answer
324 views
how to interrupt a scanner.nextline() call
There are many threads on SO about interrupting reading the system.in but what I am looking for here is some kind of advice as to how to best code what I am trying to achieve.
I have a getlogin() ...
0
votes
2answers
44 views
Efficient threading scheme
I'm writing a java GUI that performs certain operations through the serial port. Since I don't want it to block while waiting for a response I figured having a thread do it was a better way, but now ...
0
votes
1answer
124 views
How to run hrtimer handler in softirq context?
I have found this tutorial about hrtimer:
http://www.ibm.com/developerworks/linux/library/l-timers-list/
I believe the way it uses will run the callback handler in hardirq context,right? But it also ...
1
vote
2answers
240 views
Is interrupt handler running like this, and for how long?
I have some confusion when looking at how interrupt handler(ISR) is run. In Wiki http://en.wikipedia.org/wiki/Context_switch, it describes interrupt handling with 2 steps:
1) context switching
When ...
1
vote
1answer
418 views
scheduler_tick - from where is this called in Linux?
I want to understand the interrupt mechanism when a processor yields a chance to kernel code and to perform maintenance and regulation work. What I know is that timer interrupt provides this facility ...
4
votes
1answer
136 views
Pausing song when a video begins playing (and vice-versa)
I have an app that uses AVPlayer to play songs and a UIWebView to play YouTube videos. When I build it against iOS 5, the audio and video refuse to play together, which I like. Pressing play on one ...
0
votes
1answer
340 views
Thread interrupt does not work
This is my first attempt at creating my own thread pool. The program works except when I try stopping all the threads.
I'm trying to interrupt all the threads but for some reason it nevers reaches ...
0
votes
2answers
186 views
how quick can the processor handle the interrupts
I was studying about interrupts. So most architecture are interrupt driven, if everything is interrupt driven, how fast the processor can handle all of those. For example, while pressing a key board ...
1
vote
3answers
228 views
Is there any other model than Interrupt driven architecture?
I was reading about how OS works with interrupts to communicate with hardware, just wondering, if there is any other architecture other than Interrupt driven? In Robert Love's book for Linux kernel, ...
1
vote
2answers
392 views
Level triggered interrupts with GPIO on an embedded Linux device
I'm porting and existing system that used level triggered interrupts to an embedded Linux device. I'm having a bit of trouble and hopefully someone can help. My plan was to use the poll() function ...
1
vote
1answer
191 views
Disable interrupts in windows
I need to execute a piece of code atomically. I suppose the only way is to disable the interrupts, how can I do that under windows? I'm searching a windows OS which allows me to do that, so I'm no ...
1
vote
0answers
193 views
no response from libusb_interrupt_transfer
My question is very similar to the question posed here: libusb interrupt transfer
I am reverse engineering a driver Linux-G13_1.0-r44.zip
found here: ...
1
vote
1answer
183 views
Porting VxWorks intConnect API to linux
I am trying port VxWorks APIs to linux. It was working fine till I found intArchLib apis. How do I port int APIs (intConnect,intLock ...) to Linux.
intConnect : This api register an interrupt ...
2
votes
0answers
140 views
Hardware IO Access from Interrupt Handler with Windows XP 32 bit
I have a Windows XP application that is using a driver called TVicHW32 which allows me to create an interrupt handler for OS interrupts. Currently I am using a custom ISA card in an industrial chassis ...
2
votes
1answer
162 views
What happens when a thread makes kernel disable the interrupts and then that thread goes to sleep
I have this kernel code where I disable the interrupt to make this lock acquire operation atomic, but if u see the last else condition i.e. when lock is not available thread goes to sleep and ...
9
votes
3answers
576 views
What are the differences between calling System.exit(0) and Thread.currentThread().interrupt() in the main thread of a Java program?
Both cause a program to stop executing. It's clear that there must be some differences in how this happens, though. What are they?
2
votes
3answers
132 views
Interrupting another thread that is reading from stream
I have one thread (thread a) in the server that is executing object = ois.readObject();. When I pull out the LAN wire from the client, this thread does not get an exception and is continuing reading ...
3
votes
4answers
223 views
Kill an uncooperative thread in Java
Following piece is from a JUnit testcase that tests 4 different implementations of Sorter. It invokes the only method Sorter has viz sort().
I want to kill the sorting process if it takes longer than ...
3
votes
3answers
152 views
How can I interrupt Callables in an AsyncTask when the AsyncTask.cancel() method is invoked?
My Activity has an AsyncTask whose doInBackground method you can see below. I have to make multiple search request to multiple servers and in order to speed up the execution I've used Java's ...
3
votes
1answer
393 views
Is it possible to make a custom Interrupt in Assembly?
In Assembly Language we have the DOS interrupt INT 21h, which is not a hardware interrupt.
I was wondering if it was possible to write my own interrupt and call it.
If possible, please suggest links ...
1
vote
1answer
123 views
Send register value to RAM assembly lanuguage
I am making a DOS picture viewer. For the next part I must set it so that it finds the value of each pixel then sends it to a file I'm using AH=40 INT 21 to send it to the file, but the data must be ...
10
votes
3answers
480 views
Uninterruptable process in Windows(or Linux)?
Is there any way to make a program that cannot be interrupted (an uninterrupted program)? By that, I mean a process that can't be terminated by any signal, kill command, or any other key combinations ...
0
votes
1answer
243 views
Difference between IRQ and FIQ in kernel?
What is the difference between IRQ and FIQ as per the Linux API wise? Are they use same api?
Is the difference only inside ARM core or is it do do with the kernel function calls also?
0
votes
1answer
200 views
Interrupt timer stuck when run parallel with while(1)
first code:
//------------------------------------------------------------------------------
/// Interrupt handlers for TC interrupts. Toggles the state of LEDs
...
-1
votes
4answers
143 views
Java: Two threads, interrupting eachother
I want to write a code with two different threads. The first one does somethin, the second one waits a specific time. The thread that ends first should interrupt the other one.
My problem is now, that ...
0
votes
3answers
92 views
What is the exact usage of Interrupts in java?
I am new to Java concurrecny and I am reading this at the moment: Java Tutorial-Interrupts But I can't really understand where and why I should use an Interrupt. Can someone give me an example (code) ...
0
votes
0answers
226 views
compensating latency on ARM interrupts?
I'm working on a project on a STM32F4 CPU, generating signals.
I have a generic timer on CPU clock (no prescaler) on a STM32 triggering interrupts on overflow, to generate a periodic signal with GPIO ...
5
votes
1answer
1k views
Android usb host: asynchronous interrupt transfer
I'm trying to connect a USB-Device ( build by myself ) to communicate with my development board ( ODROID-X )
Unfortunately, the examples are very little, as far as the asynchronous communication. I'd ...
1
vote
1answer
135 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 ...
0
votes
1answer
1k views
Line feed (0AH) messing up with video interrupt INT 10H
I am trying to write a simply code that uses nested loop, prints the character in the following pattern,
XXXXXXXXXX
XXXXXXXXX
XXXXXXXX
XXXXXXX
XXXXXX
XXXXX
XXXX
XXX
XX
X
and here is the code, and ...
2
votes
2answers
374 views
8051 μCU - How are concurrent interrupts handled?
I've been programming on the 8051 micro-controller and I found something strange when dealing with interrupts. Suppose an interrupt has occurred. While servicing that interrupt, another one with a ...
0
votes
1answer
98 views
x86 32 bit protected mode: Read from call stack?
How can a get a address from the call stack? I am writing an exception handler and I want to make it show were the CPU exception happened?

