Top "Signals" questions

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

How can I send a signal from a python program?

I have this code which listens to USR1 signals import signal import os import time def receive_signal(signum, stack): …

python linux signals
What is the correct way to make my PyQt application quit when killed from the console (Ctrl-C)?

What is the correct way to make my PyQt application quit when killed from the console (Ctrl-C)? Currently (I have …

python linux qt pyqt signals
How to signal an application without killing it in Linux?

I have a watchdog application. It watches my main app which might crash for one reason or another (I know …

linux signals
Signal Handling in C

How can I implement signal Handling for Ctrl-C and Ctrl-D in C....So If Ctrl-C is pressed then the program …

c unix shell signals
Capture SIGINT in Java

What is the best way to capture a kill signal in java without using JNI. I did discover the sun.…

java signals
Load MIT-BIH Arrhythmia ECG database onto MATLAB

I am working on ECG signal processing using neural network which involves pattern recognition. As I need to collect all …

database matlab signal-processing signals data-mining
I have an error in main.m "Thread 1: signal SIGABRT" How can I fix this?

My code in the main.m file is as follows. I haven't changed it at all from when I started …

iphone ipad signals sigabrt
Pusher vs Pubnub vs open source Socket.io / SignalR.net / Faye / jWebSocket

I'm evaluating Pusher and PubNub at the moment to enable bi-directional realtime communications between my primarily web clients and my …

websocket socket.io signals pubnub ably-realtime
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 …

linux signals posix interrupt isr
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 …

python django login signals