A signal is a notification to a process that an event occurred. Signals are sometimes described as software interrupts. Signals are analogous to hardware interrupts in that they interrupt the normal flow of execution of a program; in most cases, it is not possible to predict exactly when a signal ...

learn more… | top users | synonyms (1)

0
votes
0answers
21 views

Basics of C signal (signal() sigset() kill() fork()), code verification

Create a console app whitch is operating on 3 signals recived from user. a) Process will printf() some stuff after reciving SIGINT Process will block / unblock SIGINT after reciving SIGUSR2 ...
0
votes
1answer
21 views

Is there an 'Editing Finished" signal for a QListWidget?

I have a QListWidget control for which I have a slot for the selectionChanged signal. The list is configured for multi-selection. The slot is getting called while the mouse button is still down while ...
0
votes
0answers
19 views

Android Send/Catch Signals in C Program

I have compiled the c program Example with NDK and pushed it on android emulator via ./adb push test I'm able to start the program and I get the repeating output Sleeping for ~3 seconds Got ...
1
vote
1answer
14 views

How would you implement a save thread cooperation with signals in ruby 2.0?

I just began to work with threads. I know the theory and understand the main aspects of it, but I've got only a little practice on this topic. I am looking for a good solution (or pattern, if ...
0
votes
0answers
35 views

QTableWidget how to connect signal to slot?

I have QTableWidget, one column of it is QComboBox. ComboxBox contians values "Yes" and "No". When "No" is selected the other cell of that row will be disabled and "Yes" will enable it. I don't know ...
0
votes
2answers
31 views

How to Detect when ios app really close

I'm developing an application for iOS and i need to be able to detect when an app really closes and not when he go to background.. I already try to catch the signal SIGKILL with signal function but ...
3
votes
1answer
37 views

Signals are not always seen by all children in a process group

I have a problem with the way signals are propagated within a process group. Here is my situation and an explication of the problem : I have an application, that is launched by a shell script (with a ...
0
votes
1answer
26 views

Trying to prevent race conditions with pselect(), but signal won't interupt

I am currently trying to implement a server in C++ using sockets. I am trying to prevent race conditions by blocking the SIGINT signal until it is stuck in the blocking pselect. From there, it should ...
0
votes
1answer
17 views

Linux: handling a segmentation fault and getting a core dump

When my application crashes with a segmentation fault I'd like to get a core dump from the system. I do that by configuring before hand ulimit -c unlimited I would also like to have an indication ...
1
vote
0answers
32 views

How do I capture SIGINT in Python on Windows?

(Similar to this question) On UNIX under Python 2.7, at the Python prompt: >>> import signal >>> def handler(signal, frame): ... print 'welcome to the handler' ... ...
1
vote
1answer
51 views

How to reliably unlink() a Unix domain socket in Go programming language

I have a Go program hosting a simple HTTP service on localhost:8080 so I can connect my public nginx host to it via the proxy_pass directive, as a reverse proxy to serve part of my site's requests. ...
1
vote
1answer
13 views

What signal number do pthread_cond_wait and pthread_cond_signal use internally?

Do pthread_cond_wait and pthread_cond_signal use sigwait and kill (from signal.h), respectively, internally? If yes, what signal number do they use, I mean, what value is passed to int kill(pid_t ...
0
votes
3answers
36 views

How to use SIGUSR1 alternate values

In man 7 signal it shows that SIGUSR1 as SIGUSR1 30,10,16 Term User-defined signal 1. If i use SIGUSR1 in my C code, i get the value 10. Is there any way to access the other values 30 & ...
4
votes
2answers
65 views

Interrupt MATLAB programmatically on Windows

When using MATLAB through the GUI, I can interrupt a computation by pressing Ctrl-C. Is there a way to do the same programmatically when using MATLAB through the MATLAB Engine C API? On Unix systems ...
1
vote
1answer
34 views

Qt signal slot connection - QNetworkAccessManager

Im new in Qt and im trying to understand the following signal-slot connection: m_networkManager = new QNetworkAccessManager(this); QNetworkReply *reply = m_networkManager->get(request); ...
0
votes
0answers
49 views

How to combine correlated signals?

There are 11 signals: S_main : The original signal S1 ~ S10 : 10 signals that are correlated to S_main with different correlation coefficients (coeff1 ~ coeff10) Now here's the question: How can ...
0
votes
3answers
53 views

Qt: inherited signal not recognized in subclass

I have created a base class that provides a common signal for all its subclasses: #include <QWidget> namespace Dino { /** * @brief Base class for all single-value settings editors * * ...
2
votes
2answers
50 views

VHDL / How to initialize my signal?

I'm a beginner in VHDL and I have a basic question. Let's consider this following input : A : in std_logic_vector(22 downto 0); And this signal : signal dummyA : std_logic_vector(47 downto 0); ...
0
votes
0answers
16 views

posix_kill is not working from cli

here is my script: #!/usr/bin/php <?php $pid = 18283; $is_ok = posix_kill($pid, SIGKILL); if($is_ok){ echo 'OK'; } else { echo 'NOT OK'; } Script output 'NOT OK', process with ...
0
votes
2answers
23 views

How do you call class methods in a signal handler in python daemon?

I'm trying to write a signal handler that will call methods from a class variable. I have code that looks like this: import daemon class bar(): def func(): print "Hello World!\n" def ...
3
votes
2answers
71 views

Send TERM signal to child process spawned in another thread of parent process

I'm on Linux platform and using Perl. First of all I created a thread, and forked a child process in this new thread. When the parent in the new thread returned and joined to the main thread, I would ...
0
votes
1answer
26 views

QSignalMapper with signal argument and extra argument

I knew that QSignalMapper work well for the condition like this: QSignalMapper *signalMapper = new QSignalMapper(this); connect(signalMapper, SIGNAL(mapped(int)), this, SIGNAL(SetSlice(int))); ...
0
votes
0answers
18 views

SIGTERM signal with nodejs cluster

I'm trying to get a nodejs server using cluster to handle process.on('SIGTERM', callback). If I run a worker process by itself, it seems to handle the signal fine when I send it from the console ...
1
vote
0answers
40 views

boost shared pointers and QT signal and slots

I have a boost shared pointer which is passed to my QT Widget in order to update the GUI if a certain variable is changed..but somehow i get an access violation Exception..maybe someone can help me on ...
0
votes
2answers
35 views

Re-propagate a Caught Signal in Linux

I am trying to use sigwait() for SIGSEGV and other signals and then do something (says writing the timestamp to a file). Then, I would like the program to behave as if the signal were never caught ...
1
vote
2answers
42 views

Is using timers/signals in c static libraries bad practice?

I'm building two static c libraries. Each of the libraries have a routine that needs to run once every second after calling mylib_init(); I implemented this in each library using setitimer, which ...
0
votes
2answers
33 views

ManyToManyField aren't available in the post_save signal

I need to manipulate data from a Django model after its saving, but I also need to access the ManyToManyField. Here's what I want to do: class Lab(Model): institute = ManyToManyField(Institute) ...
4
votes
1answer
161 views
+50

PySide / Qt : Too many arguments to connect a signal to a slot?

I'm trying to connect a custom signal (in a TCP client class) to a method that updates a log with the data sent by the server and whatnot. Here's the declaration of the TCP client class: class ...
6
votes
2answers
82 views

C linkage for function pointer passed to C library

My case is pretty simple: I want my C++ program to deal with Unix signals. To do so, glibc provides a function in signal.h called sigaction, which expects to receive a function pointer as its second ...
0
votes
0answers
34 views

Find signal strength in WCDMA network on android

I want to measure the signal strength for devices operating in 3G (HSDPA). My application should work for WCDMA devices (operating in Europe). When I run the application I always get -1. The code I ...
1
vote
1answer
49 views

How to exit after catching a Ctrl+C?

After I've caught a CtrlC to do a cleanup is it more correct to exit the program with kill( 'INT', $$ ) than exit the program with exit()?
2
votes
2answers
51 views

Why my Linux signal handler has no reaction to the signal?

#include <stdio.h> #include <signal.h> #include <stdlib.h> static void pr_mask(const char * string) { sigset_t procmask; sigprocmask(SIG_SETMASK, NULL, &procmask); ...
1
vote
1answer
41 views

How to distinguish between two different SIGUSR2 signals sent from the Server?

My server needs to support multiple clients , for the moment let's assume that we're working with 2 clients . Here's the server : #include <signal.h> #include <stdio.h> #include ...
-1
votes
0answers
29 views

What's the difference between SIGKILL and SIGSTOP? [migrated]

The manual describes SIGKILL and SIGSTOP like this: SIGKILL 9 Term Kill signal SIGTERM 15 Term Termination signal and states: The signals SIGKILL and SIGSTOP cannot ...
1
vote
1answer
27 views

Qt signal mapping: editing emitter object

So I'm dynamically creating QPushButton objects and then mapping them to emit a signal. From the slot associated with the signal I want to edit the object's properties (in this case the text, that is ...
0
votes
2answers
31 views

fast fourier transform with complex numbers from a file

My code let a user to introduce an array of numbers that will be transformed with Fourier. But I want to read this array from a file . How can I do this? I just started to learn python .. import ...
2
votes
2answers
45 views

Sending signal to certain (grand-…)grandchildren

Is there a nice way to send a SIGUSR to a grandchild directly? E.g. I have some process tree: 0 / \ 1 2 \ 3 and need to send a signal from 0 to 3. I know I could ...
0
votes
1answer
31 views

how to send input to a daemon in linux

#!/bin/bash . /etc/init.d/functions NAME=foo DIR=/home/amit/Desktop EXEC=foo.pl PID_FILE=/var/run/foo.pid IEXE=/etc/init.d/foo RUN_AS=root if [ ! -f $DIR/$EXEC ] then echo "$DIR/$EXEC not ...
1
vote
1answer
42 views

C++ signal listener for non-child pid

I'm using C++ and I need the equivalent of SIGCHLD for a process I'm aware of (i.e. I know it's pid), but did not spawn. Is there a well established design pattern to listen/watch/monitor another ...
0
votes
1answer
31 views

Is it possible for a gtk_menu_item to act like a button and throw a signal for a callback?

I have a gtk_menu_bar and one of the gtk_menu_item must, instead of dropping down a submenu, throw a signal for a callback. Is this possible? I have tried adding a gtk_event_box, but the menu bar ...
0
votes
2answers
27 views

alarm stop's when signal arrive

I'm trying to combine signal and alarm. I have 2 Processes. 1 is receiving input from the user, and write it into pipe and then sending signal (SIGUSR2) to the other Process. In the other Process, i ...
0
votes
1answer
46 views

writing to pipe signals synchronization

Here's what I'd like to do: (It is a part of the bigger assignment) And I'm stuck at the start of it. I've created the main process which forks p1,p2 processes and used execlp(separate programs). ...
0
votes
2answers
19 views

what is equivalent to sigusr1-2 signals in windows using python?

Please I need some help. I am struggling with sending a notifications between two python processes in windows. I have looked in signals module but unfortunately user defined signals are not ...
0
votes
2answers
24 views

kill signal from a underpriviledged user to root user

I have been bangin my head on this problem. I want to send a kill(pid,SIGUSR1) signal to a process running in root user with a process running in tom user.However everytime,I do this Operation not ...
1
vote
2answers
72 views

Is it possible to interrupt a CUDA kernel from the host?

I would like to interrupt "gently" a running kernel, that is: send it a signal of some sort (via global memory?), let it do its cleaning stuff and return to host. I tried a simple program, using the ...
0
votes
2answers
51 views

Need to access variables from child during SIGCHLD handler

I'm prefacing this by stating that it is a homework assignment and I'm stuck while writing the SIGCHLD handler. I need to access variables within the child process. #include <stdlib.h> #include ...
1
vote
1answer
57 views

C: Writing a proper time-out

Upon closely scouring through resources, I'm still not entirely sure how to write a proper and usable timer function in C. I am not working with threads (or parallelizable code). I simply want to ...
0
votes
1answer
39 views

PIV Analysis, Interrogation Area of The Cross Correlation

I'm running a PIV analysis on two consecutive images taken during an experiment to get the vector field. But I would like to know, based on what criteria do I have to choose the percentage of overlap ...
0
votes
1answer
22 views

Define same pipe to 2 diferent programs

im trying to pass values from one program to another using pipe. The first program create a pipe and then a son process with fork and in the part of the son process she execute with execlp another ...
0
votes
0answers
28 views

Passing chars from keyboard from one process to another with pipe

im trying make a game that consist 2 C files. The game need to be running over linux terminal. The game is tetris game , 1 C file is the keyboard listener and one is the view. The first C file ...

1 2 3 4 5 39