Tagged Questions
The signal tag has no wiki summary.
26
votes
4answers
9k views
Who “Killed” my process and why?
My application runs as a background process on Linux. It is currently started at the command line in a Terminal window.
Recently a user was executing the application for a while and it died ...
10
votes
5answers
2k views
Django: signal when user logs in?
In my Django app, I need to start running a few periodic background jobs when a user logs in and stop running them when the user logs out, so I am looking for an elegant way to
get notified of a ...
9
votes
2answers
277 views
Linux blocking signals to Python init
This is a follow up to my other post Installing signal handler with Python. In short, Linux blocks all signals to PID 1 (including SIGKILL) unless Init has installed a signal handler for a particular ...
8
votes
1answer
229 views
How are asynchronous signal handlers executed on Linux?
I would like to know exactly how the execution of asynchronous signal handlers works on Linux. First, I am unclear as to which thread executes the signal handler. Second, I would like to know the ...
8
votes
3answers
470 views
Extract human sound from a wav file using java
I am working on a project where I have to extract the human sound from a audio .wav file using java.
The audio .wav file may have 3 to 4 sounds like dog, cat, music and human. I will have to ...
8
votes
2answers
655 views
Calling pthread_cond_signal without locking mutex
I read somewhere that we should lock the mutex before calling pthread_cond_signal and unlock the mutext after calling it:
The pthread_cond_signal() routine is
used to signal (or wake up) another
...
7
votes
1answer
246 views
Signal SIGFPE question
I am newbie on the Linux signals, please help.
The following code get core dump when run in Linux 2.6 gcc.
$ ./a.out
Floating point exception (core dumped)
The questions:
1. Since a process signal ...
7
votes
2answers
278 views
C++ : Interix signals
How to compile/ use signals on the Interix platform? I am unable to get it to compile because Interix appears to be non-POSIX compliant, at least in its implementation of signal.h.
If anyone has ...
7
votes
2answers
422 views
siginterrupt() only works for the first signal? (Python)
For some reason, siginterrupt() only seems to set the behaviour for the first signal received.
In this example program, the first SIGQUIT appears to do nothing, but the second sigquit prints "SIGQUIT ...
7
votes
4answers
3k views
Explain the FFT to me
I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs.
My understanding of this is that I have to take the PCM data and ...
6
votes
4answers
145 views
In a signal handler, how to know where the program is interrupted?
On x86 (either 64-bit or 32-bit) Linux --
for example:
void signal_handler(int) {
// want to know where the program is interrupted ...
}
int main() {
...
signal(SIGALRM, signal_handler);
...
6
votes
1answer
391 views
Detect when console application is closing/killed?
I wanted to make a safe exit for my console application that will be running on linux using mono but I can't find a solution to detect wether a signal was sent to it or the user pressed ctrl+c.
On ...
6
votes
1answer
250 views
Why does this python program sometimes fail to exit?
I wrote a test program, which has two processes. The father process gets data from a Queue, and the child puts data into it. There is a signal handler which tells the program to exit. However, it does ...
6
votes
3answers
268 views
Handling a C++ signal with a lambda function
I'm working on some C++ code that uses libsigc++ for signaling (eventing.)
I'm quite new to C++, and I tend to think in C#. The equivalent code to what I want in C# would be something like:
var ...
6
votes
1answer
571 views
recvfrom() timeout with alarm()
I'm debugging the following code:
signal(SIGALRM, testt);
alarm(1);
result = ...
6
votes
3answers
10k views
How to get cell service signal strength in Android?
I am trying to write a very simple Android application that checks the signal strength of the current cell. So far, I have only found something called getNeighboringCellInfo(), but I'm not really ...
6
votes
7answers
1k views
What is the best way to make a thread signal another thread in .NET?
I need to have a thread signal another if the user wishes to interrupt execution, however I'm unsure about how to implement the signaling/signal-checking mechanism. I wouldn't like to have a singleton ...
5
votes
2answers
96 views
Does a KILL signal exit a process immediately?
I'm working on a server code that uses fork() and exec to create child processes. The PID of the child is registered when fork() succeeds and cleaned up when the CHILD signal has been caught.
If the ...
5
votes
3answers
472 views
Python: Built-in Keyboard Signal/Interrupts
I currently need to provide multiple keyboard interrupts for a program. Is there an easy way to do this with the signal class? I currently use the SIGINT/Ctrl+C but I can't find any other keyboard ...
5
votes
4answers
213 views
python: how to interrupt a regex match
I iterate over the lines in a large number of downloaded text files and do a regex match on each line. Usually, the match takes less than a second. However, at times a match takes several minutes, ...
5
votes
1answer
189 views
How can I handle SIGINT in Erlang?
I know how to create custom signal handlers in Java, Python, Ruby, Perl, and Lisp, thanks to Google and a plethora of tutorials. I can't find online how to create handlers for SIGINT, SIGTERM, HUP, ...
5
votes
2answers
147 views
libsigsegv and responding to a stack overflow
We are attempting to test student code, and in an effort to automate the process, we'd like to detect if a student's code overflows the stack.
I've met with some success using the libsigsegv library ...
5
votes
3answers
688 views
calling signal after fork
Is there any difference between "code listing 1" and "code listing 2"? Because in Code Listing 1, the child process is able to catch the SIGTERM signal and exit nicely. But code listng 2 is ...
5
votes
2answers
133 views
Low latency capture of button click
I want to have a physical button (not a software button) that I put into my custom rig. When I click this button, I want to receive a signal in my software e.g. by registering my callback function.
...
5
votes
2answers
544 views
How to stop SIGINT being passed to subprocess in python?
My python script intercepts the SIGINT signal with the signal process module to prevent premature exit, but this signal is passed to a subprocess that I open with Popen. is there some way to prevent ...
5
votes
2answers
271 views
Why is object destructor not called when script terminates?
I have a test script like this:
package Test;
sub new { bless {} }
sub DESTROY { print "in DESTROY\n" }
package main;
my $t = new Test;
sleep 10;
The destructor is called after sleep returns (and ...
5
votes
6answers
771 views
Algorithm to Match Time Dependent (1D) Signals
I was wondering if someone could point me to an algorithm/technique that is used to compare time dependent signals. Ideally, this hypothetical algorithm would take in 2 signals as inputs and return a ...
4
votes
4answers
78 views
Non-blocking check for signals in a loop
I have a thread in an application that has a loop like this:
...
while (1)
{
checkDatabase();
checkChildren();
sleep(3);
}
...
checkDatabase() is self-explanatory; checkChildren() ...
4
votes
3answers
82 views
Reading shared data inside a signal handler
I am in a situation where I need to read a binary search tree (BST) inside a signal handler (SIGSEGV signal handler, which according to my knowledge is per thread base). The BST can be modified by the ...
4
votes
2answers
150 views
What's the difference between various $SIG{CHLD} values?
What is the difference between these settings?
$SIG{CHLD} = 'IGNORE'
$SIG{CHLD} = 'DEFAULT'
$SIG{CHLD} = ''
$SIG{CHLD} = undef
According to "Advanced Programming in the UNIX Environment, 2nd ...
4
votes
2answers
164 views
How to signal alarm in python 2.4 after 0.5 seconds
I want to timeout a particular piece of python code after in runs for 0.5 seconds. So I intend to raise an exception/signal after 0.5 seconds, and handle it gracefully and continue with rest of code.
...
4
votes
2answers
150 views
How does python process a signal?
What is the workflow of processing a signal in python ? I set a signal handler, when the signal occur ,how does python invoke my function? Does the OS invoke it just like C program?
If I am in a C ...
4
votes
2answers
311 views
Send ctrl-break to java process on 64-bit Windows ala sendsignal on 32-bit
I frequently use the sendsignal tool for WebSphere Application Server processes (server, launchClient, wsadmin, etc.) in order to generate heap dumps. However, sendsignal doesn't work on 64-bit ...
4
votes
1answer
274 views
multi-threaded signal handling
In unix, If a multi-threaded process was sent a signal, which thread will be the one to execute the handling function?
if it is a multi-cpu machine, more than 1 thread is running at the same time. ...
4
votes
5answers
414 views
HOWTO determine if code is running in signal-handler context?
I just found out that someone is calling - from a signal handler - a definitely not async-signal-safe function that I wrote. And, of course, I'm getting the blame (despite warnings in my ...
4
votes
7answers
287 views
Handling CPU exceptions in C++
is there a cross-platform way to handle the CPU exceptions like segmentation faults, or division by zero? Lets say, I need to call some potentially unsafe functions (for example from a plug-in file), ...
4
votes
5answers
733 views
Python: kill or terminate subprocess when timeout
I would like to repeatedly execute a subprocess as fast as possible. However, sometimes the process will take too long, so I want to kill it.
I use signal.signal(...) like below:
ppid=pipeexe.pid
...
4
votes
4answers
833 views
Get signal names from numbers in Python
Is there a way to map a signal number (e.g. signal.SIGINT) to its respective name (i.e. "SIGINT")?
I'd like to be able to print the name of a signal in the log when I receive it, however I cannot ...
4
votes
2answers
402 views
python timer mystery
Well, at least a mystery to me. Consider the following:
import time
import signal
def catcher(signum, _):
print "beat!"
signal.signal(signal.SIGALRM, catcher)
...
4
votes
6answers
1k views
Dealing with Floating Point exceptions
I am not sure how to deal with floating point exceptions in either C or C++. From wiki, there are following types of floating point exceptions:
IEEE 754 specifies five arithmetic errors that are to ...
3
votes
2answers
132 views
Sound synthesis with C#
Is there some possibility to generate sounds in C#? I mean not just beep or open and play wave-file. I mean build the signal using different kinds of waves (sin, saw, etc.) and their options ...
3
votes
2answers
68 views
What constitutes asynchronous-safeness
It is said that you should only call asynchronous-safe functions inside a signal handler. My question is, what constitutes asynchronous-safeness? A function which is both reentrant and thread safe is ...
3
votes
3answers
109 views
Why can't I ignore SIGSEGV signal?
Here is my code,
#include<signal.h>
#include<stdio.h>
int main(int argc,char ** argv)
{
char *p=NULL;
signal(SIGSEGV,SIG_IGN); //Ignoring the Signal
printf("%d",*p);
...
3
votes
2answers
81 views
How is Ctrl-C message delivered to a process runnning on windows?
I created a C# console application to handle Ctrl-C by subscribing it to Console.CancelKeyPress event. When I executed (debug version) the application, there were 14 threads already created in the ...
3
votes
2answers
87 views
daemon won't register sigint signal
I'm making a simple daemon that makes a log when the SIGINT and SIGTERM signals are sent, I can already log when a SIGTERM signal is made but when I try to get a SIGINT signal by pressing Ctrl + C it ...
3
votes
4answers
184 views
How to send SIGINT signal from Java to an external process?
I have a Java app that creates an external process and reads the process' stdout through an InputStream. I need to be able to kill the process when I am done with it. Is there a way to send a SIGINT ...
3
votes
1answer
275 views
Java Application to read WiFi Signal and SSID?
I've been searching a lot about this topic but I didn't find anything useful up till now, I want to create a simple application that can read
WiFi Signal Strength
SSID of AP
using Java. Is this ...
3
votes
1answer
100 views
Java on Linux: maximize a non-Java GUI application
From Java code, is there a way to maximize the window of a different GUI application? I have access to Process objects created for these other programs, as well as a semi-reliable way to get their ...
3
votes
2answers
142 views
is SIGSEGV delivered to each thread?
I have a program in Linux which is multithreaded. There are certain memory areas in which I'm interested to see if they have been written within a certain time period. For that I give only read access ...
3
votes
1answer
192 views
Race condition in my POSIX signal handler
The following program forks off a child, that runs "/bin/sleep 10" repeatedly. The parent installs a signal handler for SIGINT, that delivers SIGINT to the child. However sometimes sending SIGINT to ...