Sponsored Content
Top Forums Programming How to block or ignore signals from certain processes? Post 302233846 by ramen_noodle on Monday 8th of September 2008 03:59:06 PM
Old 09-08-2008
man sigprocmask.
 

10 More Discussions You Might Find Interesting

1. Programming

Signals In HP-UX

does the way of handling, interrupting signals in HP-UX same as that of solaris. If there is difference than what it is.?:confused: (1 Reply)
Discussion started by: kapilv
1 Replies

2. UNIX for Advanced & Expert Users

Monitoring Processes - Killing hung processes

Is there a way to monitor certain processes and if they hang too long to kill them, but certain scripts which are expected to take a long time to let them go? Thank you Richard (4 Replies)
Discussion started by: ukndoit
4 Replies

3. Solaris

Identifying and grouping OS processes and APP processes

Hi Is there an easy way to identify and group currently running processes into OS processes and APP processes. Not all applications are installed as packages. Any free tools or scripts to do this? Many thanks. (2 Replies)
Discussion started by: wilsonee
2 Replies

4. UNIX for Dummies Questions & Answers

Signals...

(posted this in the scripting forum as well, but figured it should go here) So, what's going on is this: For our program, we had to create our own shell, and if the user pressed ctrl-c just at the cmdline, then this signal would be ignored, but if there is a foreground process running, let's... (0 Replies)
Discussion started by: blind melon
0 Replies

5. Programming

Using Signals

How can use signals in a C program If i want a child program to signal it's parent program that it(child) program has completed the task that it was assigned.:confused: (2 Replies)
Discussion started by: kapilv
2 Replies

6. UNIX for Advanced & Expert Users

How to prevent gdb to send Interrupt signals to child processes

Hi, I have a program which invokes child processes and communicates with the processes. When I run the program under gdb and say interrupt, all the child processes are dying. Here I am not interested in debugging the child processes. But I don't want my child processes to be killed as my parent... (2 Replies)
Discussion started by: klnarayana
2 Replies

7. Programming

sending signals between two processes

Hello, I have two programs: server.c and client.c I need to send signal from client to server. As far as I know I need to use kill() function. To use kill() function I have to know the pid the second process. How can I send pid from process to process(both are written in separate files). ... (3 Replies)
Discussion started by: fasolens
3 Replies

8. Shell Programming and Scripting

Finding the age of a unix process, killing old processes, killing zombie processes

I had issues with processes locking up. This script checks for processes and kills them if they are older than a certain time. Its uses some functions you'll need to define or remove, like slog() which I use for logging, and is_running() which checks if this script is already running so you can... (0 Replies)
Discussion started by: sukerman
0 Replies

9. UNIX for Dummies Questions & Answers

Blocking signals

I know how to add signal to a set. But what if I want to add 2 or 3 signals to the set. I know I can use sigaddset (&set,SIGBUS)....but what if I want to add SIGBUS and SIGALRM at once. Do i have to do it like this.. sigaddset (&set,SIGBUS); sigaddset (&set,SIGALRM); Is there another way to... (0 Replies)
Discussion started by: joker40
0 Replies

10. UNIX for Advanced & Expert Users

Help with Signals

Hi All, The problem statement is as below: Problem: A process (exe) is getting executed in background. The output of this process is getting logged in a file. After successfully running for some time the process gets terminated. In the log file following is present: ^M[7m Interrupt ^M[27m... (8 Replies)
Discussion started by: Praty.27
8 Replies
sigprocmask(2)							System Calls Manual						    sigprocmask(2)

NAME
sigprocmask, sigsetmask - Sets the current signal mask LIBRARY
Standard C Library (libc) SYNOPSIS
#include <signal.h> int sigprocmask( int how, const sigset_t *set, sigset_t *o_set ); The following function declaration does not conform to current standards and is supported only for backward compatibility: int sigsetmask ( int signal_mask ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: sigprocmask(): XSH4.2 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Indicates the manner in which the set of masked signals is changed; it has one of the following values: The resulting set is the union of the current set and the signal set pointed to by the set parameter. The resulting set is the intersection of the current set and the com- plement of the signal set pointed to by the set parameter. The resulting set is the signal set pointed to by the set parameter. Specifies the signal set. If the value of the set parameter is not null, it points to a set of signals to be used to change the currently blocked set. If the value of the set parameter is null, the value of the how parameter is not significant and the process signal mask is unchanged; thus, the call can be used to inquire about currently blocked signals. If the o_set parameter is not the null value, the signal mask in effect at the time of the call is stored in the space pointed to by the o_set parameter. [Tru64 UNIX] Specifies the new signal mask for the process. DESCRIPTION
The sigprocmask() function is used to examine or change the signal mask of the calling process. Typically, you would use the sigprocmask (SIG_BLOCK) function to block signals during a critical section of code, and then use the sigproc- mask (SIG_SETMASK) function to restore the mask to the previous value returned by the sigprocmask (SIG_BLOCK) function. If there are any unblocked signals pending after the call to the sigprocmask() function, at least one of those signals will be delivered before the sigprocmask() function returns. The sigprocmask() function does not allow the SIGKILL or SIGSTOP signals to be blocked. If a program attempts to block one of these sig- nals, the sigprocmask() function gives no indication of the error. [Tru64 UNIX] The sigsetmask() function allows the process signal mask to change for signal values 1 to 31. This same function can be accomplished for all values with the sigprocmask(SIG_SETMASK) function. The signal of value i will be blocked if the i-th bit of sig- nal_mask parameter is set. EXAMPLES
To set the signal mask to block only the SIGINT signal from delivery, enter: #include <signal.h> int return_value; sigset_t newset; ... sigemptyset(&newset); sigaddset(&newset, SIGINT); return_value = sigprocmask (SIG_SETMASK, &newset, NULL); RETURN VALUES
Upon successful completion, the sigprocmask() function returns a value of 0 (zero). If the sigprocmask() function fails, the signal mask of the process is unchanged, a value of -1 is returned, and errno is set to indicate the error. [Tru64 UNIX] Upon successful completion, the sigsetmask() function returns the value of the previous signal mask. If the function fails, a value of -1 is returned. ERRORS
The sigprocmask() function sets errno to the specified values for the following conditions: The value of the how parameter is not equal to one of the defined values. [Tru64 UNIX] The set or o_set parameter points to a location outside the allocated address space of the process. RELATED INFORMATION
Functions: kill(2), sigaction(2), sigsuspend(2), sigvec(2), sigpause(3) Standards: standards(5) delim off sigprocmask(2)
All times are GMT -4. The time now is 04:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy