On POSIX-compliant platforms, SIGINT is the signal sent to a process by its controlling terminal when a user wishes to interrupt the process.
0
votes
4answers
56 views
What is the Signal function (SIGINT)?
what does this statement below do?? if anyone can explain this function i would really appreciate it.
signal(SIGINT, SIG_DFL);
0
votes
1answer
41 views
Windows: how to send a signal (SIGNINT or SIGBREAK) to a process from command line
What is the best way to send a signal like SIGINT or SIGBREAK to a process from Windows command line? In my case, I want to send the CTRL-Break event from with a batch file to a running java process.
...
0
votes
1answer
36 views
Sending ctrl-c to specific screen session
I am designing a script to launch a process inside a named screen session.
as_user "screen -p 0 -S $command -X eval 'stuff \"wine LFS.exe /cfg=$command.cfg\"\015'"
so bash myscript.sh start test will ...
0
votes
1answer
166 views
Java signal handling and then return to main program
MI have a program that starts with for loop and it spins for 10 times, and one loop lasts one second. I need to handle a signal (CTRL+C) and while handling it, it should do it's own for loop, and ...
0
votes
1answer
62 views
How can I use SIGINT to break out of the wait for accept() or read()?
I'm currently trying to break out of the wait for accept() and/or write() by using signals, in this case SIGINT. My the program doesn't leave either as expected.
void sigHandler(int signal ){
...
1
vote
1answer
63 views
How do I configure ruby to enter the debugger on Ctrl-C (SIGINT)?
I'd like to enter the debugger upon typing ctrl-C (or sending a SIGINT). I have installed the debugger (I'm running Ruby 1.9.3) and verified that it works. I've added this to my setup files (this is ...
0
votes
1answer
75 views
setpgrp/setpgid fails (?), works on Mac OSX, not on Linux
I'm trying to write a program that executes a child command, and does not allow that child to be killed by Ctrl+C.
I've read that I can accomplish this with setpgid/setpgrp.
The following code works ...
2
votes
0answers
60 views
Override “^c” or “ctrl-c” is the interrupt signal for shell interpreter [closed]
I would like to override ctrl-c as the signal interrupt character for all my shells and replace it with something else. I've looked at stty and xmodmap, but have not found anything that i understand ...
1
vote
2answers
107 views
Create/raise a SIGINT (Ctrl-C) from Perl script - and cause debugger entry in step mode from die handler?
I'm having a problem with a rather complex program in Perl (under Linux), which I'm trying to debug. I can simulate the problem with the simple snippet here (test.pl):
use warnings;
use strict;
use ...
1
vote
1answer
82 views
How to properly handle SIGINT with Express.js?
I need to do some useful things when my Express.js service is stopped by SIGINT. Using Express.js version 3.0.6, I understand that this should work:
var express = require('express');
var app = ...
2
votes
0answers
53 views
Closing a Node.js server gracefully [duplicate]
Possible Duplicate:
Graceful shutdown of a node.JS HTTP server
I have a basic server in Node.js using the http module. While I know a SIGINT event will close the program and stop the ...
0
votes
2answers
121 views
Default SIGINT in Node.js?
I tried searching the Node.js source code, but I could not find it. By default, where would I find the Node.js code that handles SIGINT (Ctrl-c) by default in the following example:
var http = ...
0
votes
1answer
102 views
C Making volatile sig_atomic_t Global in Header File
I'm trying to make a global variable, initialized in my msh.c file as:
volatile sig_atomic_t sig_int = 0;
This alone seems to be fine. However if I go to my proto.h file(which is included in all ...
1
vote
1answer
83 views
Ensure destruction of process in bash? (Possibly catch SIGINT)
I'm trying to set up an IO script to allow in/out communication between two FIFO's (one FIFO is for input, the other is for output).
It is necessary for my server to receive output while I am typing ...
2
votes
2answers
92 views
Is there any point pressing ctrl+c repeatedly? [closed]
Often (e.g. using matlab) I've executed some program accidentally. I try to interrupt it by hitting CTRL+C. Sometimes this works, other times it doesn't and I keep madly hitting it until the program ...
0
votes
2answers
130 views
telnet catch ctrl+c server
I have written a socket-server like here. If I type ctrl+c in telnet, the server don't do anything now. I want to catch it like signal(SIGINT,SIG_IGN)
How can I do?
0
votes
2answers
134 views
SIGINT lost when output redirected; how to detect termination in program?
I wrote console program that detects SIGINT, so when user press Ctrl+C program performs some actions and terminates.
But when I redirect this program with pipe to any other, for example:
...
2
votes
1answer
170 views
SIGINT to cancel read in bash script?
I'm writting a bash wrapper to learn some scripting concepts. The idea is to write a script in bash and set it as a user's shell at login.
I made a while loop that reads and evals user's input, and ...
2
votes
3answers
291 views
sigint called multiple times instead of one (C)
This is a snippet of my code:
signal (SIGINT, ( void *)sig_handler);
while(1){
newsockd = -1;
memset(&cli_addr, 0, sizeof(cli_addr));
if((newsockd = accept(sockd, (struct sockaddr ...
1
vote
0answers
36 views
Intermittent SIGINTs on launch in iOS simulator
Occasionally when I run my app in the simulator, it freezes on startup with a SIGINT. The lines it breaks on are varied, but they include system library calls like ...
0
votes
3answers
144 views
Can I pass arguments to SIGINT?
I am trying to pass some extra arguments so they can be used at the SIGINT call on my program, but I am getting a compile error, is this actually achievable or am I misinformed?
If it is achievable, ...
4
votes
1answer
256 views
Cygwin CTRL-C (Signal Interrupts) not working properly - JVM Shutdown Hooks not starting
I'm working on a Java application that utilises shutdown hooks in order to clean up on termination/interruption of the program, but I've noticed that Cygwin's implementation of CTRL-C doesn't seem to ...
1
vote
1answer
181 views
pthread_sigmask interferes with GDB
I have been working on a multithreaded program under Linux with particular requirements about signal handling.
For instance, I need the program to print statistics for a single Ctrl-C input.
I ...
1
vote
3answers
310 views
Best pratice to free allocated memory on SIGINT
I have a simple program which uses select and stuff like that for multiplexing IO.
To interrupt the "server" process, I integrated a sig_handler which reacts on SIGINT.
Each time when memory is ...
0
votes
0answers
67 views
kdbg - how to pass signals to the debugged process?
I need to let kdbg pass siginals (SIGINT, to be specific) to the debugged process. I've been trying to find a way for the last couple of days, but to no avail. With gdb, you can execute "handle signal ...
7
votes
2answers
570 views
Why Linux always output “^C” upon pressing of Ctrl+C?
I have been studying signals in Linux. And I've done a test program to capture SIGINT.
#include <unistd.h>
#include <signal.h>
#include <iostream>
void signal_handler(int ...
1
vote
2answers
168 views
signal() overwriting other signal handlers
Does the signal() function overwrite other signal calls a process might have set up? I.e. if a SIGINT handler has been setup by a process, and a DLL calls signal(SIGINT,xxx) to handle its own ...
2
votes
2answers
875 views
Ctrl-c stopped working in cygwin
Ctrl-c (SIGINT/SIGTERM) stopped working in cygwin. If I recall, this might have something to do with TTY settings. Please advise on how to get it working again. I did not change anything intentionally
...
4
votes
2answers
391 views
Unix signal handling in (common) lisp
I've done a bit of research on this subject and am turning up blanks. There seem to be implementation-dependent ways of doing Unix signal handling in Common Lisp, but is there a package that gives a ...
1
vote
0answers
114 views
Perl's getc issue in SIGINT handler in perl 5.14.2
Here is my testing environment:
root@redhat89195 bin]# ./perl -v
This is perl 5, version 14, subversion 2 (v5.14.2) built for x86_64-linux-thread-multi
.....
Code snippet:
$SIG{INT}=sub{
...
1
vote
0answers
274 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 ...
3
votes
2answers
731 views
Interrupting Python raw_input() in a child thread with ^C/KeyboardInterrupt
In a multithreaded Python program, one thread sometimes asks for console input using the built-in raw_input(). I'd like to be able to be able to close the program while at a raw_input prompt by typing ...
4
votes
3answers
1k views
Why is my threading/multiprocessing python script not exiting properly?
I have a server script that I need to be able to shutdown cleanly. While testing the usual try..except statements I realized that Ctrl-C didn't work the usual way. Normally I'd wrap long running tasks ...
3
votes
1answer
1k 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 ...
13
votes
2answers
455 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 ...
1
vote
2answers
687 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, ...
4
votes
1answer
908 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; # ...
1
vote
1answer
1k 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
186 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() ...
3
votes
3answers
288 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 ...
2
votes
1answer
185 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 ...
1
vote
1answer
257 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 ...
2
votes
3answers
442 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 ...
7
votes
3answers
907 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 ...
3
votes
1answer
1k 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 ...
4
votes
1answer
774 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 ...
2
votes
2answers
1k 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 ...
5
votes
2answers
2k 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 ...
1
vote
1answer
404 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
1k 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 ...

