Sponsored Content
Full Discussion: Trying to block signal
Top Forums UNIX for Dummies Questions & Answers Trying to block signal Post 302465034 by joker40 on Thursday 21st of October 2010 02:00:16 PM
Old 10-21-2010
Trying to block signal

I have this code that doesnt do what it is suppose to do. It should block signal that I send while process is running. I press control+z while this process is running and it should be blocked but it isnt. When i press control+z it gives me this....
[1]+ Stopped
When I change SIGTSP into SIGINT then it works as it should. I press control+c and it ignores it and continues executing my program.
Can anyone tell me why this is happening.

Code:
  sigset_t s;
  int j = 0;
  sigemptyset(&s);
  sigaddset(&first,SIGTSTP);

  for (i = 0 ; i < 10 ; i++){
     sleep(5);
     if ( sigprocmask(SIG_BLOCK,&first,NULL)==-1)
        break;

     fprintf("print something here\n");

  }

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Alarm signal

Hi, when I execute a script on unix AIX, I've got an error message: "Execution: 85328 Signal d'alarme". If I edit this file with "vi", I ve got the same error after a while (about 1 minute). If I try with another user I still have the problem. But if I rename this file, no problem. My... (5 Replies)
Discussion started by: cgsteph
5 Replies

2. Programming

Signal Names

Hi everyone, Is there a variable or built in function in the Unix env. for me to obtain the name of a signal that is caught? As far as I understand only a numeric value of the signal is returned to the handler. For example: void handler (int signum) { ... (2 Replies)
Discussion started by: laila63
2 Replies

3. UNIX for Advanced & Expert Users

kill signal

Hello e'bdy, We have WebSphere MQ running on AIX 5.1 Every weekend MQ receives a kill -30 signal from some process or user and offloads a big error file. There is no way in MQ through which that process can be tracked. Is there something which i can do on UNIX level to trap the process? Best... (3 Replies)
Discussion started by: jhaavinash
3 Replies

4. UNIX for Advanced & Expert Users

Kill Signal

Hello, I'm doing a project of OS simulation (Process Scheduling, to be very specific). Can anyone, please, explain what exactly happens in the background when we see "Sending all processes the KILL signal...........". How is it sent to each process? Is it that something like a boolean is stored... (3 Replies)
Discussion started by: ameya
3 Replies

5. Shell Programming and Scripting

Signal question

Who can explain the meaning of the &2 &1 or @, #, etc in the script? Is there any document which can explain the usage of these words in details? for example: ls /etc/sysconfig/network > /dev/null 2>&1 #@ bash, ksh and sh. Thanks in advance for ur advice. (1 Reply)
Discussion started by: GCTEII
1 Replies

6. Shell Programming and Scripting

signal script?

I have a script which invoke a java program, because the program requires file as input, hence the script would sleep a X seconds then check for file existence, if the file exists then program is invoker else, keep waiting until the time is up. My problem is that if there is a way to find out if my... (1 Reply)
Discussion started by: mpang_
1 Replies

7. Programming

Signal catching

Hi! I want to catch all signals that my program receives print their name and then execute the default handler. Can you help me on that? I've tried the following code: #include <stdio.h> #include <unistd.h> #include <signal.h> void (*hnd)(int i); char signals = { "SIGHUP",... (7 Replies)
Discussion started by: dark_knight
7 Replies

8. Shell Programming and Scripting

Killed by signal 15.

Hi all I have Master script, Main script ,and 4 Child script. Master.sh #!/bin/bash /export/home/user/Main.shMain.sh #!/bin/bash /export/home/user/Child1.sh & /export/home/user/Child2.sh & /export/home/user/Child3.sh & /export/home/user/Child4.sh &I run only Master.sh script... (1 Reply)
Discussion started by: almanto
1 Replies

9. Programming

queue a signal

A program have to receive signals and work agreed with it, but the process have to receive more than one signal when it is attending other. Those have to be queued to be attended later recived. how can i do that? thanks. (2 Replies)
Discussion started by: marmaster
2 Replies

10. Programming

Signal function

Hello I want to know how can i use signal function in c for keyboard interrupt handling. what i exactly want is : my program is processing and if i press any key while processing , the program should call the interrupt and displays/prints that key and now goes back to processing. I added the... (5 Replies)
Discussion started by: Jahanzeb
5 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 06:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy