Tagged Questions

A signal is a notification to a process that an event occurred. Signals are sometimes described as software interrupts. Signals are analogous to hardware interrupts in that they interrupt the normal flow of execution of a program; in most cases, it is not possible to predict exactly when a signal will arrive.

learn more… | top users | synonyms

38
votes
6answers
14k views

How do I capture SIGINT in Python?

I'm working on a python script that starts several processes and database connections. Every now and then I want to kill the script with a Ctrl-C signal, and I'd like to do some cleanup. In Perl I'd ...
35
votes
7answers
24k views

How to prevent SIGPIPEs (or handle them properly)

I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no ...
26
votes
1answer
269 views

How, in Perl 5, can I get the pid of the process who sent me a signal?

In C, I can say #include <stdio.h> #include <unistd.h> #include <signal.h> int continue_running = 1; void handler(int signal, siginfo_t* info, void* data) { printf("got signal ...
24
votes
3answers
2k views

POSIX threads and signals

I've been trying to understand the intricacies of how POSIX threads and POSIX signals interact. In particular, I'm interested in: What's the best way to control which thread a signal is delivered to ...
23
votes
5answers
6k views

What is the difference between sigaction and signal?

I was about to add an extra signal handler to an app we have here and I noticed that the author had used sigaction to set up the other signal handlers. I was going to use signal. To follow ...
18
votes
4answers
12k views

How can I catch SIGSEGV (segmentation fault) and get a stack trace under JNI on Android?

I'm moving a project to the new Android Native Development Kit (i.e. JNI) and I'd like to catch SIGSEGV, should it occur (possibly also SIGILL, SIGABRT, SIGFPE) in order to present a nice crash ...
15
votes
4answers
294 views

Synchronization primitives in the .NET Framework: which one is the good one?

I have a problem concerning the System.Threading Microsoft .NET namespace. In this namespace, many classes are defined in order to help me managing with threads. Well, I have a problem, but I do not ...
13
votes
1answer
469 views

Python - How are signals different from pubsub?

Django and Flask make use of signals — the latter uses the Blinker library. In the context of Python, Blinker and the Python pubsub library, how do signals and pubsub compare? When would I use one or ...
13
votes
5answers
795 views

When to use signals and slots and when not to

We're using Qt that offers signals and slots which I find really convenient. However, with great power comes great responsibility and I think it's very easy too misuse this feature. Are there any ...
12
votes
1answer
584 views

JVM signal chaining SIGPIPE

We have a C++ application with an embedded JVM (Sun's). Because we register our own signal handlers, it's recommended we do so before initializing the JVM since it installs its own handlers (see ...
12
votes
7answers
675 views

Under what circumstances are C++ destructors not going to be called?

I know that my destructors are called on normal unwind of stack and when exceptions are thrown, but not when exit() is called. Are there any other cases where my destructors are not going to get ...
12
votes
3answers
563 views

How does a process come to know that it has received a signal

Please correct me if i am wrong. Here is my understanding about signals: As far as i know, signal generation and signal delivery are 2 different things. In order to generate a signal, the OS ...
12
votes
6answers
5k views

How can I catch a ctrl-c event? (C++)

How do I catch a ctrl-c event in C++?
11
votes
5answers
96 views

Should my library handle SIGSEGV on bad pointer input?

I'm writing a small library that takes a FILE * pointer as input. If I immediately check this FILE * pointer and find it leads to a segfault, is it more correct to handle the signal, set errno, and ...
11
votes
4answers
536 views

Is fork (supposed to be) safe from signal handlers in a threaded program?

I'm really uncertain about the requirements POSIX places on the safety of fork in the presence of threads and signals. fork is listed as one of the async-signal-safe functions, but if there is a ...
11
votes
5answers
2k views

In what order should I send signals to gracefully shutdown processes?

In a comment on this answer of another question, the commenter says: don’t use kill -9 unless absolutely necessary! SIGKILL can’t be trapped so the killed program can’t run any shutdown ...
11
votes
2answers
18k views

how to emit cross-thread signal in qt?

QT documentation states that signals and slots can be 'direct', 'queued' and 'auto'. It also stated that if object that owns slot 'lives' in a thread different from object that owns signal, emitting ...
10
votes
2answers
366 views

Boost.asio & UNIX signal handling

Preface I have a multi-threaded application running via Boost.Asio. There is only one boost::asio::io_service for the whole application and all the things are done inside it by a group of threads. ...
9
votes
1answer
67 views

What is the use of feholdexcept etc.?

The documentation (in the standards) for all of fenv.h is rather confusing, but I'm especially confused about feholdexcept and the concept of "non-stop mode" for a floating point exception. As far as ...
9
votes
4answers
1k views

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 done nothing special to handle unix signals), my PyQt application ignores SIGINT ...
9
votes
6answers
1k views

Kill bash script foreground children when a signal comes

I am wrapping a fastcgi app in a bash script like this: #!/bin/bash # stuff ./fastcgi_bin # stuff As bash only executes traps for signals when the foreground script ends I can't just kill -TERM ...
9
votes
1answer
386 views

Erlang Linux signal handling

Is it possible to trap Linux signals (e.g. SIGUSR1) through an handler in Erlang? (without having to resort to a driver crafted in C)
9
votes
2answers
524 views

is python variable assignment atomic?

Let's say I am using a signal handler for handling an interval timer. def _aHandler(signum, _): global SomeGlobalVariable SomeGlobalVariable=True Can I set SomeGlobalVariable without worrying ...
9
votes
2answers
3k views

Where are core dumps written to in Mac OS X?

On Mac OS X, if I send SIGQUIT to my C program, it terminates, but there is no core dump file. Do you have to manually enable core dumps on Mac OS X (how?), or are they written to somewhere else ...
9
votes
9answers
2k views

What is a signal in Unix?

This comment confuses me: "kill -l generally lists all signals". I thought that a signal means a quantized amount of energy. [Added] Please, clarify the (computational) signal in Unix and the ...
8
votes
2answers
179 views

Override Ctrl-C

I am supposed override the ctrl-c signal and use it to print a message. It is not supposed to end the program. What happens so far is that when ctrl-c is pressed it prints the message, but ends the ...
8
votes
4answers
385 views

Howto kill a thread in Haskell

Using Control.Concurrent and forkIO there are some cases that will leave the thread in a blocked state (this is especially frequent under windows with networking) so even if one try to use killThread ...
8
votes
4answers
2k views

How delete and deleteLater works wrt to signals and slots in Qt?

There is an object of class QNetworkReply. There is a slot (in some other object) connected to its finished() signal. Signals are synchronous (the default ones). There is only one thread. At some ...
8
votes
3answers
3k views

Python signal woes: SIGQUIT handler delays execution if SIGQUIT recieved during execution of another signal handler?

The following program is very simple: it outputs a single dot each half a second. If it recieves a SIGQUIT, it proceeds to output ten Qs. If it recieves a SIGTSTP (Ctrl-Z), it outputs ten Zs. If it ...
8
votes
1answer
4k views

Help with sigprocmask()

I haven't completely understood how to use sigprocmask(). Particularly how the set and oldset in its syntax work and how to use them. int sigprocmask(int how, const sigset_t *set, sigset_t *oldset); ...
7
votes
2answers
122 views

How do I prevent SIGPIPE when using boost::asio?

I'm using a pipe to communicate between two processes on Gnu/Linux. The receiving end closes the pipe while the sending end is still trying to send data. Here is some code that emulates the ...
7
votes
2answers
191 views

POSIX signal behavior

If a process is currently stopped due to a SIGTRAP signal and it is sent a SIGSTOP signal via kill(), what would be the default behavior? Would the SIGSTOP be a pending signal that is delivered after ...
7
votes
1answer
121 views

Trying to make close sleep on Linux

I need to investigate/test the behavior of some code on Linux under conditions where close might be interrupted by signal handlers (either with or without SA_RESTART). What is the most convenient ...
7
votes
3answers
261 views

Does POSIX guarantee signals will not be delivered to a partially-initialized thread?

On most implementations of POSIX threads, some initialization is required in the newly-created thread before it is in a consistent state able to run application code. This may involve unlocking locks ...
7
votes
4answers
590 views

PyQt4,How to add a batch of widget (QPushButton) at one time and lets them to execute on SLOT

if i want to add 10 QPushButton at one time: NumCount=20 for i in range(NumCount): btn=QPushButton("%s %s" %("Button" i+1),self) btn.clicked.connect(self.btnclick) def btnclick(self): # here ...
7
votes
2answers
420 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 ...
6
votes
1answer
67 views

In Bash, how can I run multiple infinitely-running commands and cancel them all with ^C?

I would like to write a script that runs a few different infinitely running commands, e.g. run_development_webserver.sh watch_sass_files_and_compile_them.sh ...
6
votes
2answers
159 views

Threads, Signals and Child Handling: What a world…What a world

So I have an interesting design problem. I am working on SLES 9+ Linux, kernel 2.6+, and have a multi-threaded application acting as an RPC client. The idea is to have few threads in place to process ...
6
votes
2answers
215 views

Is the data in siginfo trustworthy?

I've found that on Linux, by making my own call to the rt_sigqueue syscall, I can put whatever I like in the si_uid and si_pid fields and the call succeeds and happily delivers the incorrect values. ...
6
votes
3answers
381 views

If I type Ctrl-C on the command line, will the finally block in Java still execute?

I'm running my Java application in cmd.exe in Windows. If I stop the process forcefully by pressing Ctrl-C, and the code at that moment was running in the try block, will the finally block still be ...
6
votes
1answer
177 views

How to know if a program ended its execution via a signal?

I'm writing a program monitor as an assignment for an operating systems course (very basic though, like an introduction to it). One of the things the monitor has to do is to show the termination code ...
6
votes
2answers
196 views

unit testing for CTRL-C sent to an application

I am developing an application handling CTRL-C. I am producing a signal handler to shut-down gracefully threads and other resources. I want to test CTRL-C in different scenarios where my application ...
6
votes
4answers
754 views

C++ - Clutter 1.0 - calling function from thread causes segfault

I am struggling with calling a clutter function from an extra thread. I use boost::thread for threading and the clutter library 1.0. To be specific, the thread contains a looped function that emits ...
6
votes
4answers
1k views

recv() is not interrupted by a signal in multithreaded environment

I have a thread that sits in a blocking recv() loop and I want to terminate (assume this can't be changed to select() or any other asynchronous approach). I also have a signal handler that catches ...
6
votes
2answers
323 views

Why doesnt SIGINT get caught here?

Whats going on here? I thought SIGINT would be sent to the foreground process group. (I think, maybe, that system() is running a shell which is creating a new process group for the child process? ...
6
votes
2answers
213 views

What happens if during a signal handling in UNIX, the same signal gets sent to the program?

Any ideas on this? Is there some kind of a signal queue, or does it get dropped? While we are at this question, is it true that signal handlers should do as minimal work as possible? I read ...
6
votes
2answers
236 views

Tracing UNIX signal origins?

If I have a process that receives signals from other processes, is there a way for me to somehow tell which process (if any) sent a signal? strace lets me trace which signals a process has received, ...
6
votes
2answers
428 views

Pausing a process?

Is there a way to pause a process (running from an executable) so that it stops the cpu load while it's paused, and waits till it's unpaused to go on with its work? Possibly in python, or in some way ...
6
votes
5answers
1k views

How to disable ctrl-z, ctrl-c from breaking out of a php script

Can someone point me in the correct direction for researching how to prevent users from breaking out of a php script with ctrl-z, ctrl-c?
6
votes
4answers
3k views

How to send SIGINT to a remote process over SSH?

I have a program running on a remote machine which expects to receive SIGINT from the parent. That program needs to receive that signal to function correctly. Unfortunately, if I run that process ...

1 2 3 4 5 13