The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
30 views

Handling Signal Sent by “Stop” While Running Debugger in QT Creator

While running my program normally in QT Creator (on a Linux machine), when I hit the "stop" button, I am able to handle the SIGTERM signal and gracefully shut down my software. However, when I run in ...
0
votes
0answers
7 views

What are the signals should to be handled on daemonized processes?

What's the list of signals should be handled for daemonized processes? Is there strict requirements? If that is just a convention, what is trivially expected signal handling configurations? This ...
2
votes
2answers
175 views

Signal handler won't see global variable

Here's the problem: this program should receive input from stdin and count the bytes inserted; the SIGUSR1 signal whill stop the main program and will print on file standard error how many bytes have ...
1
vote
1answer
46 views

What is good way share reloadable config parameters for perl scripts

I have a lot of small Perl daemons with a common configuration. Currently, I use this to load the settings: In myconfig.pm: package MyConfig; use base 'Exporter'; BEGIN { our @EXPORT = qw( ...
0
votes
0answers
69 views

Using swapcontext with signal handler

I am trying to build a user level thread library like pthreads. I want to use swapcontext within the signal handler. But since it is not a signal safe function, it is not advisable to use it. Can ...
0
votes
0answers
75 views

APR threads and signal handling

I am currently trying to implement threads using the Apache Portable Runtime. Everything works fine, except I am not really sure if I am doing it the way it's intended to do due to lack of ...
2
votes
1answer
136 views

Connect multiple widget signals with one signal handler in PyQt

I am trying to create simple apllicatin in Python3 using PyQT4. Main window displays several custom made widgets. Each widget contains a QLineEdit widget. Here is some code: def fill_listwidget ...
0
votes
1answer
64 views

Save variable returned by signal handler?

I am writing an application in Python 2.7 using PyGTK 2. Basically I create TreeView widget, fill it with content and then check if the selection is changed. When it is true I want the selection to be ...
4
votes
1answer
200 views

Perl Term::ReadLine::Gnu Signal Handling Difficulties

I'm using Term::ReadLine::Gnu and have run into a problem with signal handling. Given the script below and a TERM signal sent to the script, the handler for the TERM signal is not triggered until ...
1
vote
2answers
78 views

How to execute a handler function before quit the program when receiving kill signal from“killall” or “kill -p pid”?

I have the following code: #include <stdio.h> #include <stdlib.h> #include <pthread.h> pthread_t test_thread; void *thread_test_run (void *v) { int i=1; while(1) { ...
1
vote
2answers
228 views

Intel CPU OpenCL in Mono killed by SIGXCPU (Ubuntu)

Some time ago I wrote simple boids simulation using OpenCL (was school assignment), using C#, Cloo for OpenCL and OpenTK for OpenGL output. I tested it on Windows7 with AMD CPU implementation of ...
3
votes
3answers
576 views

signal handler function in multithreaded environment

In my multithreaded GUI application I have following signal handling code. I want to improve this code so that it will be correct and threading safe but there are some things I don't fully understand ...
1
vote
1answer
260 views

child-process signal handling in c

I need your help in an exercise i have about signal handling between processes. I think that it's a trivial question but i can't find the answer anywhere. I want to print something from the parent in ...
4
votes
1answer
177 views

Python Unix/Windows Abstraction Layer for Signal Handling & User Management

I'd like to ask a question for which my extensive web search would suggest the answer is 'no' but maybe I've overlooked something ... Are there Python abstraction layers sitting on top of Unix and ...
1
vote
1answer
163 views

Getting back trace for ARC platform from signal handler context

I want to catch SIGSEGV and print the back trace in the logs before my program exits. This is to analyze the crash at a later point of time. I am working on a software which runs on multiple ...
2
votes
0answers
152 views

python subprocess avoid signal handling by the child

well, I have a usr1 signal handler in a script. By sending a SIGUSR1 from outside to my script, my handler does its work, but the signal is spread also to the child that I create via Popen. How can I ...
1
vote
3answers
96 views

A function that use global variable but exit, should still be avoided in signal handlers ?

As I studied something about unix programming with C, I've learned that functions that fails to be reentrant should be avoided inside a signal handler, but if I've something like: int main(int argc, ...
1
vote
2answers
253 views

Python-QTableWidget: How to catch signal when sorting in header is clicked

While filling tableWidget with some text I've used self.ui.tableWidget.resizeRowToContents for every row. After that and: self.ui.tableWidget.setSortingEnabled(1) ,sorting is working as expected but ...
4
votes
2answers
1k views

What's the difference between SIGSTOP and SIGTSTP?

That's it. Just wondering about the difference between SIGSTOP and SIGTSTP.
2
votes
1answer
160 views

Checking for installed signal handler

I have a library which installs a signal handler for SIGSEGV for debugging purpose. The SIGSEGV handler just prints some information and then exits the program. Recently, I had the need to invoke ...
1
vote
2answers
64 views

Should we use perror inside signal handler

should we use perror inside signal handler because they have a user space buffer like printf and other stdio functions?
0
votes
2answers
120 views

Test unit in C for server listening function. Avoid listen blocking call

I am writing a test unit for function named pkg_getclient (). It is, basically, a function that listens indefinetly for a client. Here is the implementation : http://slexy.org/view/s21RBuOUOu ...
1
vote
1answer
119 views

Most important signals to handle?

Recently I was working on a software written in c which had about a 3-4 thousand lines of code.When I started to get segmentation faults ,I added a SIGSEGV handler.This helped me in pin pointing the ...
1
vote
1answer
849 views

Autosys: KILLJOB event leaves orphan processes

I am running a variety of processes on a Windows server ( a mix of batch files, java, perl, csharp scripts/applications). These processes are launched using Autosys. The autosys agent on Windows ...
4
votes
2answers
127 views

Is it possible to handle a SEGFAULT orginating in native code?

I have a Java 1.6 application that accesses a third party native module, through a JNI class provided as the interface. Recently we noticed that a SEGFAULT is occurring in the native module, and is ...
1
vote
1answer
172 views

signal handling by sigaction

i was reading about the use of pselect system call when i came across this code and comments... static void handler(int sig) { /* do nothing */ } int main(int argc, char *argv[]) { fd_set ...
0
votes
3answers
268 views

How to handle signals/events in Java [closed]

Can any tell me how signals are handled in Java? I have a situation where I need to signal an event/signal to a thread from application main ().
4
votes
3answers
129 views

Process group for child processes of a library

I'm working on a library (C++) that will be integrated into clients code. This lib will spawn a few child processes and must monitor them to respawn them as soon as they die (for any reason). I need ...
4
votes
1answer
178 views

safe to access shared data structure from signal handler

I'm trying to decide wether it's safe to access a common (read: shared between handler-code and rest of the programm) data structure from a signal handler in perl (v5.14.2) built for ...
2
votes
1answer
113 views

Is it possible to obtain the Android activity stack from native code?

I am implementing a native signal handler that produces logs with richer detail than the standard tombstone files. I would like to include a dump of the current task's activity stack, to help me ...
0
votes
1answer
581 views

using signal handler for ctrl-c - need help on infinite loops

I am using signal handler for ctrl-c signal. i.e whenever ctrl-c signal is generated instead of exiting the application I do some action. Let us suppose if my application hangs due to while(1) loop ...
2
votes
4answers
1k views

Segmentation fault handling

I have an application which I use to catch any segmentation fault or ctrl-c. Using the below code, I am able to catch the segmentation fault but the handler is being called again and again. How can I ...
0
votes
1answer
1k views

Async serial communication in non-canonical (raw) mode and generating SIGIO in linux/osx

To start off, I'm having trouble getting my serial device to generate a SIGIO when data is ready to be read. I am trying to write a simple serial interface to communicate to a micro using a usb to ...
3
votes
1answer
141 views

Java and signals

When programming in C or Perl, a SIGALRM signal can interrupt 'print' in such a way that only a partial write occurs. Is there any such hassle with signals when using Java? Or does the JVM shield the ...
4
votes
1answer
883 views

How do i remove a signal handler

I've made the follow signal handler struct sigaction pipeIn; pipeIn.sa_handler = updateServer; sigemptyset(&pipeIn.sa_mask); sa.sa_flags = SA_RESTART; if(sigaction(SIGUSR1, &pipeIn, NULL) == ...
0
votes
1answer
394 views

what is impact if i call syscall(SYS_gettid) from signal Handler?

can some one tell me what could be the adverse effect of calling syscall(SYS_gettid) from Signal Handler? i know it is not in the safe funtions list to be called from signal handler but i want to know ...
2
votes
4answers
300 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 ...
1
vote
2answers
254 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 ...
4
votes
2answers
1k 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
122 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 ...
3
votes
2answers
613 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
459 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 ...
4
votes
2answers
258 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 ...
6
votes
4answers
456 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 ...
1
vote
1answer
1k 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 ...
4
votes
2answers
2k 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
619 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 ...
2
votes
2answers
188 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 ...
6
votes
2answers
274 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 ...
6
votes
1answer
539 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 ...

1 2