Tagged Questions

12
votes
6answers
5k views

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

How do I catch a ctrl-c event in 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 ...
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
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; ...
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
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
404 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
1answer
458 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
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
274 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
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"; ...