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++?
5
votes
4answers
584 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? ...
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
1answer
792 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 ...
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, ...
0
votes
2answers
294 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
280 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
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"; ...