2
votes
1answer
32 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;
…
0
votes
4answers
69 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<&l …
2
votes
6answers
82 views
Explicitly calling a destructor in a signal handler
I have a destructor that performs some necessary cleanup (it kills processes). It needs to run even when SIGINT is sent to the program. My code currently looks like:
typedef boo …
2
votes
2answers
64 views
How to make a Simple FIR Filter using Matlab?
How can I make a simple low-pass FIR filter using Matlab (without using the built-in function) ?
Problem example:
Implement a FIR LPF with cut-off frequency 250Hz
it may also b …
0
votes
1answer
40 views
C++ Server is terminating if the front end Tomcat is killed. Error “Received untrapped signal [13] - SIGPIPE”
I am facing a problem in my C++ server program. The request XML comes from the front end (Java) and the back end server (C++) process the request and returns the reply XML.
As par …
2
votes
2answers
59 views
Qt widget update later but when?
I'd like to know what happens exactly when I call a QWidget's update() method.
Here is the documentation:
http://doc.trolltech.com/4.5/qwidget.html#update
This function does n …
2
votes
6answers
108 views
longjmp() from signal handler
I'm using the following code to try to read an input from user and timeout and exit if more than 5 seconds pass. This is accomplished through a combination of setjmp/longjmp and th …
5
votes
2answers
63 views
How can I get a human-readable description from a signal number?
Does the POSIX standard or another C standard provide a way to recover a meaningful message from a signal number, in the same way that strerror() makes it possible to recover a mes …
0
votes
3answers
105 views
Throwing an exception from within a signal handler
We have a library that deals with many aspects of error reporting. I have been tasked to port this library to Linux. When running though my little test suite, one of the tests f …
4
votes
1answer
72 views
siginterrupt() only works for the first signal? (Python)
For some reason, siginterrupt() only seems to set the behaviour for the first signal received.
In this example program, the first SIGQUIT appears to do nothing, but the second sig …
0
votes
0answers
16 views
catching write faults on write protected memory
I am trying to catch write faults on write protected memory pages from my program. I have done following to achieve this :
protect memory page using mprotect() : allowing only re …
1
vote
5answers
202 views
How can I catch a ctrl-c event? (C++)
How do I catch a ctrl-c event in C++?
1
vote
2answers
45 views
controlling program execution
I am writing small debugging program for multithread apps. My idea is to run the target, that is being debuged for for example 100 nanosecs, then pause and examine its memory. Howe …
1
vote
1answer
45 views
Is mq_send atomic?
Hi,
can anybody tell me what happens if multithread program receives SIGSTOP signal during execution of mq_send?
1
vote
2answers
130 views
Signal and Slot vs Multithreading in Boost Library
I have gone through similar questions on Stackoverflow but still can't get a good answer:
how boost implements signals and slots
How signal and slots are implemented
I am quite …
