Tagged Questions

4
votes
1answer
192 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
1answer
404 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
395 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 ...
1
vote
1answer
194 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 ...
0
votes
0answers
20 views

Mono application using Console.CancelKeyPress cannot be run in background

I have a console application in Mono under Linux that uses Console.CancelKeyPress to listen for SIGINT. However, this applications refuses to run in the background, as it always immediately gets ...
0
votes
2answers
331 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
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"; ...