Chaithra
Chaithra

Reputation: 1140

how to send signal from one program to another?

i am using message queue as an ipc between 2 programs. Now i want to send data from one program to another using message queue and then intimate it through a signal SIGINT.

I dont know how to send a signal from one program to another . Can anybody pls provide a sample code if they have the solution.

Upvotes: 9

Views: 12965

Answers (4)

slacy
slacy

Reputation: 11783

Note that by using the sigqueue() system call, you can pass an extra piece of data along with your signal. Here's a brief quote from "man 2 sigqueue":

The value argument is used to specify an accompanying item of data (either an integer or a pointer value) to be sent with the signal, and has the following type:

     union sigval {
         int   sival_int;
         void *sival_ptr;
     };

This is a very convenient way to pass a small bit of information between 2 processes. I agree with the user above -- use SIGUSR1 or SIGUSR2 and a good sigval, and you can pass whatever you'd like.

You could also pass a pointer to some object in shared memory via the sival_ptr, and pass a larger object that way.

Upvotes: 2

green_t
green_t

Reputation: 3037

system("kill -2 `pidof <app_name_here>` ");

Upvotes: -4

vartec
vartec

Reputation: 134691

#include <sys/types.h>
#include <signal.h>
int kill(pid_t pid, int sig);

Upvotes: 12

serioys sam
serioys sam

Reputation: 2051

Signal in linux can be send using kill system call just check this link for documentation of kill system call and example. you can see man -2 kill also. and it's not advisable to use SIGINT use SIGUSR1 or SIGUSR2

Upvotes: 5

Related Questions