Tagged Questions
The sigint tag has no wiki summary.
12
votes
2answers
149 views
What is the difference between Ctrl-C and SIGINT?
I have been debugging a Python program which segfaults after receiving a KeyboardInterrupt exception. This is normally done by pressing Ctrl+c from the shell. To test if a particular code change fixed ...
12
votes
6answers
5k views
6
votes
3answers
294 views
What happens in BASH when you do Ctrl-C (hint, it's not simply sending a SIGINT)
A little background first - When I do apt-get install downloads from my company internet it provides a high burst of speed (400-500KB/s) for the first 10 seconds or so before dropping down to a tenth ...
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 ...
6
votes
3answers
10k views
Can I send a ctrl-C (SIGINT) to an application on Windows?
I have (in the past) written cross-platform (Windows/Unix) applications which, when started from the command line, handled a user-typed Ctrl-C combination in the same way (i.e. to terminate the ...
5
votes
1answer
188 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
3answers
816 views
What happens to a SIGINT (^C) when sent to a perl script containing children?
I have a Perl script that forks.
Each fork runs an external program, parses the output, and converts the output to a Storable file.
The Storable files are then read in by the parent and the total ...
5
votes
4answers
583 views
Is destructor called if SIGINT or SIGSTP issued?
I have a class with a user-defined destructor. If the class was instantiated initially, and then SIGINT is issued (using CTRL+C in unix) while the program is running, will the destructor be called? ...
5
votes
3answers
244 views
using a sigint from ctrl-c
alright, so i'm using a sighandler to interpret some signal, for this purpose it is ctrl-c, so when ctrl-c is typed some action will be taken, and everything is fine and dandy, but what I really need ...
5
votes
2answers
540 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
4answers
474 views
Catching signal inside its own handler
#include<stdio.h>
#include<signal.h>
void handler(int signo)
{
printf("Into handler\n");
while(1);
}
int main()
{
struct sigaction act;
act.sa_handler = handler;
...
4
votes
1answer
159 views
Perl trapping Ctrl-C with threads in bash
While I see how to have Perl trap Ctrl-C (sigint) in bash; I'm getting lost at why does it fail with threads; I'm trying the following script:
#!/usr/bin/env perl
use threads;
use threads::shared; # ...
3
votes
3answers
119 views
How can I interrupt a blocking method in python?
Usually I can interrupt stuff with Ctrl+C, but sometimes when I'm using threads it doesn't work - example below.
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
[GCC 4.5.2] on linux2
Type ...
3
votes
1answer
243 views
catching SIGINT in a multithreaded program
I am writing a multithreaded program where I want to handle a possible Ctrl-C command from the user to terminate execution. As far as I know there is no guarantee that the main thread, which is able ...
3
votes
3answers
996 views
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 process via subprocess and observes and reacts to its output.
The dedicated server must ...
3
votes
1answer
393 views
SIGINT handling and getline
I wrote this simple program:
void sig_ha(int signum)
{
cout<<"received SIGINT\n";
}
int main()
{
string name;
struct sigaction newact, old;
newact.sa_handler = sig_ha;
...
2
votes
1answer
137 views
Application interrupts like crazy
I had a perfectly running C++ (Android native) application .. then I introduced some try { } catch {} statements and if I debug the application it interrupts like crazy in random, correct pieces of ...
2
votes
3answers
86 views
How do I generate a SIGINT when using XCode to debug?
My console app traps SIGINT so it can exit gracefully.
Pressing CTRL+C inside XCode while the program is being debugged, though, has no effect.
I can find the process and use a terminal window to ...
2
votes
1answer
345 views
Thin doesn't respond to SIGINT or SIGTERM
bundle exec thin start -p 3111 gives the following output:
Using rack adapter
Thin web server (v1.2.11 codename Bat-Shit Crazy)
Maximum connections set to 1024
Listening on ...
2
votes
1answer
403 views
Trap signal in child background process
I am unable to trap a signal when running in a child / background process.
Here is my simple bash script :
#!/bin/bash
echo "in child"
trap "got_signal" SIGINT
function got_signal {
echo ...
2
votes
2answers
336 views
segmentation fault in a simplistic shell
I am writing code for a simplistic c shell. It stores the history of the last 10 command. If 'r' is entered as a command, then it should run the most recent command from the history. Also, if 'r x' is ...
2
votes
1answer
456 views
How can I catch SIGINT in threading python program?
When using threading module and Thread() class, SIGINT (Ctrl+C in console) could not be catched.
Why and what can I do?
Simple test program:
#!/usr/bin/env python
import threading
def ...
2
votes
1answer
152 views
Signal handler, python
I have a multithreaded program and use the signal.signal(SIGINT,func) to kill all threads when ctrl c is pressed. The question I have is this:
I have to call signal.signal(...) from main in python. ...
2
votes
1answer
791 views
C++: Continue execution after SIGINT
Okay, I am writing a program that is doing some pretty heavy analysis and I would like to be able to stop it quickly.
I added signal(SIGINT, terminate); to the beginning of main and defined terminate ...
2
votes
3answers
326 views
How to ask bash to wait for a result and send a SIGKILL when it get it?
I want to use zbarcam but after reading a barcode, it doesn't stop.
$ zbarcam | xvkbd -file - -window emacs
EAN-13:6941428130969
CODE-128:3096140900557
Do you know how I can tell bash to kill ...
2
votes
1answer
707 views
Stopping the inferior process in GDB WITHOUT a signal?
Is there a way to stop the inferior without using Ctrl+C (or an equivalent signal sent from another process?) I'm using a windows platform and am managing GDB from another process, so with no notion ...
2
votes
2answers
1k views
Sending SIGINT to a subprocess of python
I've got a python script managing a gdb process on windows, and I need to be able to send a SIGINT to the spawned process in order to halt the target process (managed by gdb)
It appears that there ...
2
votes
2answers
1k views
Ignoring ctrl-c
I'm trying to write a shell and I'm at the point where I want to ignore ctrl-c.
I currently have my program ignoring SIGINT and printing a new line when the signal comes, but how can I prevent the ^C ...
1
vote
2answers
186 views
SIGINT signal()/sigaction in C++
So here is my code:
void sigHandle(int sig)
{
signal(SIGINT, sigHandle); //Is this line necessairy?
cout<<"Signal: "<<sig<<endl;
}
int main(){
signal(SIGINT, ...
1
vote
1answer
184 views
Perl trapping Ctrl-C (sigint) in bash
I'm reading How do we capture CTRL ^ C - Perl Monks, but I cannot seem to get the right info to help with my problem.
The thing is - I have an infinite loop, and 'multiline' printout to terminal (I'm ...
1
vote
1answer
59 views
Handling SIGINT in slow system calls
I am very new to Python, so forgive me if this question is very basic.
I am trying to handle a keyboard interrupt while accepting data from a socket using select module. So, I have a select.select() ...
1
vote
1answer
100 views
Sending SIGINT from within a Matlab GUI
From within a Matlab GUI application, I'm starting an external program (a console application on Windows) that takes care of reading data from a measurement system. The data is stored in several files ...
1
vote
1answer
175 views
How do I stop Ctrl-C from killing spawned processes with jruby?
I have a ruby program, spawning new processes. I want these to survive their parent even when I press Ctrl-C. To accomplish this, I try to trap INT, However, this doesn't help.
The program below ...
1
vote
1answer
565 views
sending SIGINT CTRL-C using ganymed SSH2?
I need to kill a process that I have started using ganymed SSH2. Specifically i would like to gracefully kill it using CTRL-C. I have seen ideas of trying to send ASCII \x03 but when using the ...
1
vote
2answers
273 views
Signal passing to managed processes using supervisord
I am using supervisord to spawn and manage a FastCGI application that I am writing in C for a linux target. I have a signal handler that gracefully exits my application when SIGINT is received. I ...
0
votes
1answer
62 views
Sending SIGINT (Ctrl-C) to program running in Eclipse Console
I have setup a run configuration in Eclipse and need to send SIGINT (Ctrl-C) to the program. There is cleanup code in the program that runs after SIGINT, so pressing Eclipse's "Terminate" buttons ...
0
votes
2answers
292 views
Signals when debugging
I'm developing an application (a service/daemon, really) on Linux in C++ that needs to interface with a piece of hardware. If my program doesn't release the resources for this peice of hardware ...
0
votes
2answers
279 views
How to deal with SIGINT?
When I catch SIGINT signal in my program, how can I safely clean up resources?
In signal handler function it is impossible to call delete operator, because I don't know how to release resource created ...
0
votes
1answer
311 views
sending control+c (SIGINT) to NSPIPE in objective-c
I am trying to terminate an openvpn task, spawned via NSTask.
My question:
Should I send ctrl+c (SIGINT) to the input NSPipe for my NSTask?
inputPipe = [NSPipe pipe];
taskInput = [inputPipe ...
0
votes
4answers
2k views
send SIGINT to child process
I am trying to create a child process and then send SIGINT to the child without terminating the parent. I tried this:
pid=fork();
if (!pid)
{
setpgrp();
cout<<"waiting...\n";
...
0
votes
2answers
290 views
Saving work after a SIGINT
I have a program which takes a long time to complete. I would like
it to be able to catch SIGINT (ctrl-c) and call the self.save_work() method.
As it stands, my signal_hander() does not work since
...