Top "Signals" questions

A signal is a notification to a process that an event occurred.

Using signals and sigpipe

I'm working on an assignment that involves writing a program to process data (calculate pi) using fork (processes), signals and …

c process pipe signals sigpipe
Understanding scipy deconvolve

I'm trying to understand scipy.signal.deconvolve. From the mathematical point of view a convolution is just the multiplication in …

python numpy scipy signals deconvolution
MATLAB - Pitch Shifting an Audio Signal

My group is developing a simple MATLAB Graphical User Interface (GUI) that is supposed to record audio from a microphone …

algorithm matlab signals pitch pitch-shifting
Handling multiple SIGCHLD

In a system running Linux 2.6.35+ my program creates many child processes and monitors them. If a child process dies I …

linux linux-kernel signals
Python: How to prevent subprocesses from receiving CTRL-C / Control-C / SIGINT

I am currently working on a wrapper for a dedicated server running in the shell. The wrapper spawns the server …

python subprocess signals sigint keyboardinterrupt
catching signals while reading from pipe with select()

using select() with pipe - this is what I am doing and now I need to catch SIGTERM on that. …

c signals pipe signal-handling
run code after transaction commit in Django

Is there any way to run some code after transaction commit in Django? I need to send some messages to …

django transactions signals commit
How to cleanly exit a threaded C++ program?

I am creating multiple threads in my program. On pressing Ctrl-C, a signal handler is called. Inside a signal handler, …

c++ multithreading signals exit
Interrupting blocked read

My program goes through a loop like this: ... while(1){ read(sockfd,buf,sizeof(buf)); ... } The read function blocks when it …

c linux signals interrupt
Alternative to sun.misc.Signal

I started research to find an alternative to the sun.misc.Signal class, because it could be unsupported in upcoming …

java signals compatibility sun