Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
602 views

Where should signal handlers live in a django project?

I have just started implementing signal listeners in a django project. While I understand what they are and how to use them. I am having a hard time figuring out where I should put them. The ...
9
votes
2answers
264 views

longjmp and RAII

So I have a library (not written by me) which unfortunately uses abort() to deal with certain errors. At the application level, these errors are recoverable so I would like to handle them instead of ...
8
votes
1answer
228 views

How are asynchronous signal handlers executed on Linux?

I would like to know exactly how the execution of asynchronous signal handlers works on Linux. First, I am unclear as to which thread executes the signal handler. Second, I would like to know the ...
6
votes
2answers
2k views

Python - Trap all signals

In python 2.6 under Linux, I can use the following to handle a TERM signal: import signal def handleSigTERM(): shutdown() signal.signal(signal.SIGTERM, handleSigTERM) Is there any way to ...
5
votes
2answers
127 views

Signal handler accessing queue data structure (race condition?)

I'm currently writing a small shell in C++. Jobs and the PIDs associated with them are stored within a queue of job pointers (job *). When a new job is run, information about it is added to the ...
5
votes
1answer
117 views

Signal handling in OpenMP parallel program

I have a program which uses POSIX timer (timer_create()). Essentially the program sets a timer and starts performing some lengthy (potentially infinite) computation. When the timer expires and a ...
5
votes
3answers
687 views

calling signal after fork

Is there any difference between "code listing 1" and "code listing 2"? Because in Code Listing 1, the child process is able to catch the SIGTERM signal and exit nicely. But code listng 2 is ...
5
votes
2answers
626 views

Reap children without setting $SIG{CHLD} to IGNORE or to a custom signal handler

I am trying to write a socket server that forks for every connection. I have been successful except for one small caveat: my child processes use Net:OpenSSH->capture2() which requires that $SIG{CHLD} ...
5
votes
1answer
215 views

iphone - how to properly handle exceptional situations (signals ?)

In my iphone app, I want to provide some sort of app termination handler that will do some final work (delete some sensitive data) before the application terminates. I want to handle as much of the ...
5
votes
4answers
4k views

Write a signal handler to catch SIGSEGV

I want to write a signal handler to catch SIGSEGV. First , I would protect a block of memory for read or writes using char *buffer; char *p; char a; int pagesize = 4096; " ...
4
votes
3answers
82 views

Reading shared data inside a signal handler

I am in a situation where I need to read a binary search tree (BST) inside a signal handler (SIGSEGV signal handler, which according to my knowledge is per thread base). The BST can be modified by the ...
4
votes
2answers
148 views

What's the difference between various $SIG{CHLD} values?

What is the difference between these settings? $SIG{CHLD} = 'IGNORE' $SIG{CHLD} = 'DEFAULT' $SIG{CHLD} = '' $SIG{CHLD} = undef According to "Advanced Programming in the UNIX Environment, 2nd ...
3
votes
2answers
68 views

What constitutes asynchronous-safeness

It is said that you should only call asynchronous-safe functions inside a signal handler. My question is, what constitutes asynchronous-safeness? A function which is both reentrant and thread safe is ...
3
votes
1answer
56 views

Handling multiple signals

I have a question about handling a signal. Assume that if we recieve SIGINT signal, we should print "Recieved Signal". If within ten seconds the handler recieves another signal, it should print ...
3
votes
2answers
86 views

How to fire Java method using bash

Suppose I launch a Java application: java -cp whatever.jar com.example.Start Process launches ok and keeps running with PID 1314. Now I would like the system to fire a method by users request. How ...
3
votes
1answer
149 views

Threaded perl and signal handlers

I am using the Thread::Pool module in perl to parallelize some perl code. This process takes a while and occasionally I will kill it from the command line with a SIGINT. Doing so causes the program ...
3
votes
3answers
156 views

C++ exceptions and signal handlers

I am reading The Design and Evolution of C++, by Bjarne Stroustrup. Regarding exeception handling and asynchronous signals it is mentioned as below: Can exceptions be used to handle things like ...
3
votes
1answer
251 views

Signal handling in C++

Argument of type void (*)(int) is incompatible with parameter of type __sighnd64_t Below is my simple code: #include <iostream> #include <string> #include <signal.h> #include ...
3
votes
3answers
1k views

Is it possible to use signal inside a C++ class?

Ok folks let me see if i can explain this clearly... I am doing something like this: #include <signal.h> class myClass { public: void myFunction () { ...
2
votes
4answers
45 views

freeing memory inside a signal handler

I am writing an API that uses sockets. In the API, I allocate memory for various items. I want to make sure I close the sockets and free the memory in case there is a signal such as Ctrl-C. In ...
2
votes
2answers
44 views

compile errors using signal.h in Linux

I'm writing a shell program that must handle signals. My relevant signal handling related code is as follows: #include <signal.h> ... #include <sys/types.h> ... void installSigactions( ...
2
votes
2answers
55 views

How to have more than two consecutive signals caught?

If I send multiple subsequent Hangup signals to the following program, only two of them would be handled and the rest will be ignored: #include <stdio.h> #include <unistd.h> #include ...
2
votes
1answer
59 views

Python:Django: Signal handler and main thread

I am building a django application which depends on a python module where a SIGINT signal handler has been implemented. Assuming I cannot change the module I am dependent from, how can I workaround ...
2
votes
3answers
76 views

sem_wait and signal handler

Why sem_wait cannot be used inside a signal handler (particularly SIGSEGV signal which is per thread)? Can someone give me an example scenario where it will crash the application? I guess sem_wait is ...
2
votes
2answers
37 views

Returning from Signal Handlers

Am I not leaving my signal handler function in the correct way? It does not seem to return to the program normally. Instead it goes into the loop and where it should wait for user input, it skips and ...
2
votes
1answer
73 views

Is it possible to terminate only the one thread on receiving a SIGSEGV?

I have an application which starts multiple threads. I am using a signal handler to catch the signals. I don't want my application to quit on SIGSEGV; I want to terminate only the thread that ...
2
votes
2answers
182 views

Why is my pipe in C not working?

as an exercise I need to use a signal handler, and pipes to send some messages between two processes, when getting a signal. Below is my sourcecode. When I'm running it, I can get the pipes to work, ...
2
votes
1answer
112 views

Matlab: Is it possible to create signal handlers (.m scripts)

I've looked through the documentation, etc, but I'm not seeing anything obvious. I'd like to have a signal handler that can intercept ^C, ^\, or some other keypress that could be used to interrupt a ...
2
votes
1answer
78 views

Linux C and C++: what else should I be logging when handling signals like SIGSEGV?

Working on some linux (Ubuntu) systems, running some in-house C and C++ apps (gcc). There is a long list of signals which are handled, such as SIGSEGV and SIGINT. On signal, the callstack is ...
2
votes
2answers
346 views

Can I write-protect every page in the address space of a Linux process?

I'm wondering if there's a way to write-protect every page in a Linux process' address space (from inside of the process itself, by way of mprotect()). By "every page", I really mean every page of ...
2
votes
1answer
317 views

How to properly write a SIGPROF handler that invokes AsyncGetCallTrace?

I am writing a short and simple profiler (in C), which is intended to print out stack traces for threads in various Java clients at regular intervals. I have to use the undocumented function ...
2
votes
3answers
133 views

Is there a way to test whether I'm in a signal handler?

I'm having to work on a logging module that can be called from various places in a large project. The problem I have is that sometimes the module may be called from code executed inside a signal ...
2
votes
2answers
788 views

Managing Signal Handling for daemons that fork()

I want to write a robust daemon in perl that will run on Linux and am following the template described in this excellent answer. However there are a few differences in my situation: First I am using ...
2
votes
3answers
198 views

Application receiving mysterious SIGINTs

We have a small daemon application written in C for a couple of various UNIX platforms (this problem is happening in SunOS 5.10), that basically just opens up a serial port and then listens for ...
1
vote
2answers
45 views

Correct way to use signal handlers

What is the correct way to use signal handlers? I saw the codes below from this question and was wondering why do you still need to put signal(SIGSEGV,sig_func); inside the sig_func? Wouldn't that ...
1
vote
1answer
72 views

python: windows equivalent of SIGALRM

I have this decorator: def timed_out(timeout): def decorate(f): if not hasattr(signal, "SIGALRM"): return f def handler(signum, frame): raise ...
1
vote
0answers
130 views

How do you intercept a keyboard interrupt (CTRL-C) in Jython?

This is what I've tried... from sun.misc import Signal from sun.misc import SignalHandler class InterruptHandler(SignalHandler): def handle(self): print "Shutting down server..." ...
1
vote
3answers
215 views

catching signals while reading from pipe with select()

using select() with pipe - this is what I am doing and now I need to catch SIGTERM on that. how can I do it? Do I have to do it when select() returns error ( < 0 ) ?
1
vote
2answers
67 views

Sending and handling a signal on a cloned thread

UPDATE: This appears to be a timing issue. Adding a call to sleep before the call to kill makes everything work as expected. I have been playing with clone(2) and trying to get a handle on how it ...
1
vote
1answer
148 views

BAcktracing on Linux 64 bit from Signal Handler when malloc/free on callstack

below is the sample source i want to use on " Red Hat Enterprise Linux 5.5 (Tikanga) Kernel 2.6.18-194.el5xen x86_64" OS machine. The general idea is i want to have backtrace of other thread. so i ...
1
vote
3answers
152 views

is execution of signal handler un-preemptible in linux?

I have a process p registered with a signal handler for SIGALRM. A timer is setup to periodically send signal SIGALRM to process p. There are also multiple threads running in process p. Is the signal ...
1
vote
1answer
108 views

signal handler function keeps looping

My function created to handle the SIGINT signal is stuck in a constant loop. The idea is to make CTRL-C ignored by the parent process but sent to the child process (and they handle it as default). ...
1
vote
1answer
296 views

Installing signal handler with Python

(there is a follow up to this question here) I am working on trying to write a Python based Init system for Linux but I'm having an issue getting signals to my Python init script. From the 'man 2 ...
1
vote
4answers
138 views

Is there any way to prevent a user from registering/using his own signal handler and always use a particlar handler?

My requirement is: I have a signal handler in my tool, which is registered and used between some particular interval (i am using timer). Now this signal handler should NOT allow any ...
1
vote
2answers
715 views

How to resolve REG_EIP undeclared (First use in this function ) error on Linux 32 bit machine?

I have been coming across errors in compilation of my signal handler program written in C language with gcc in displaying the dumped register values after occurance of Segmentation fault. When i tried ...
1
vote
1answer
219 views

Can you explain the following signal handling behavior in python?

I have the following program: import socket import sys import threading import signal class serve(threading.Thread): def __init__(self): super(serve, self).__init__() self.s = ...
1
vote
0answers
170 views

How to change FPU context in signal handler (C++/Linux)

I wrote a signal handler to catch FPE errors. I need to continue execution even if this happens. I receive a ucontext_t as parameter, I can change the bad operand from 0 to another value but the FPU ...
1
vote
4answers
394 views

Algorithm for base-10 numeric display - minimum changes per refresh

Quick Summary: I'm looking for an algorithm to display a four-digit speed signal in such a way that the minimum number of (decimal) digits are changed each time the display is updated. For example: ...
1
vote
4answers
637 views

Which signals should a wrapper script pass along to a subprogram?

If I have a script that is a wrapper for another program (e.g., a daemonizer wrapper or a wrapper for mathematica), it is sometimes useful to trap signals in the wrapper program and pass them along to ...
1
vote
4answers
571 views

Create temp dir that is globally known and that gets automagically removed (C++)?

In C++, I have a few functions that need to write to a temp directory. Ideally, only one temp directory gets created that they all write to (to minimize I/O overhead). That directory should be ...

1 2