请输入您要查询的百科知识:

 

词条 Sigaction
释义

  1. General

  2. sigaction structure

  3. Replacement of deprecated signal()

  4. Use in C++

  5. Example

  6. References

  7. External links

{{One source|date=February 2010}}{{lowercase|title=sigaction()}}

In computing, sigaction is a function API defined by POSIX to give the programmer access to what should be a program's behavior when receiving specific OS signals.

General

In Unix-like operating systems, one means of inter-process communication is through signals. When an executing unit (process or thread) receives a signal from the OS, it should react in some way defined by the datasheet and the conventional meaning of this signal (i.e. by dumping its data, stopping execution, synchronizing something...).

The sigaction() system call is used to declare the behavior of the program should it receive one particular non-system-reserved signal. This is done by giving along with the system call a structure containing, among others, a function pointer to the signal handling routine. Some predefined signals (such as SIGKILL) have locked behavior that is handled by the system and cannot be overridden by such system calls.

sigaction structure

The POSIX standard requires that the sigaction structure be defined as below in the header file and it should contain at least the following fields:

struct sigaction {

void (*sa_handler)(int); /* address of signal handler */

sigset_t sa_mask; /* additional signals to block */

int sa_flags; /* signal options */

/* alternate signal handler */

void (*sa_sigaction)(int, siginfo_t *, void*);

};

Implementations are free to define additional, possibly non-portable fields. The sa_handler member specifies the address of a function to be called when the process receives the signal. The signal number is passed as an integer argument to this function. The sa_mask member specifies additional signals to be blocked during the execution of signal handler. sa_mask must be initialized with sigemptyset(3). The sa_flags member specifies some additional flags. sa_sigaction is an alternate signal handler with different set of parameters. Only one signal handler must be specified, either sa_handler or sa_sigaction. If it is desired to use sa_sigaction instead of sa_handler, SA_SIGINFO flag must be set.

Replacement of deprecated signal()

The sigaction() function provides an interface for reliable signals in replacement of the unreliable and deprecated signal() function. Signal handlers installed by the signal() interface will be uninstalled immediately prior to execution of the handler. Permanent handlers must therefore be reinstalled by a call to signal() during the handler's execution, causing unreliability in the event a signal of the same type is received during the handler's execution but before the reinstall. Handlers installed by the sigaction() interface can be installed permanently and a custom set of signals can be blocked during the execution of the handler. These signals will be unblocked immediately following the normal termination of the handler (but not in the event of an abnormal termination such as a C++ exception throw.)

Use in C++

In C++, the try {/* ... */} catch {/* ... */} programming structure may be (depending on host platforms) based on signalling. To catch signals translated into C++ exceptions, special compiler switches may be necessary on some platforms such as -fnon-call-exceptions for GCC and the Intel C Compiler.[1]

Example

  1. include
  2. include
  3. include
  4. include
  5. include
  6. include
  1. define NUMCHLDS 10

void sigchld_handler(int, siginfo_t*, void*);

sig_atomic_t nexitedchlds = 0;

int

main(int argc, char *argv[])

{

struct sigaction act;

memset(&act, 0, sizeof(struct sigaction));

sigemptyset(&act.sa_mask);

act.sa_sigaction = sigchld_handler;

act.sa_flags = SA_SIGINFO;

if (-1 == sigaction(SIGCHLD, &act, NULL))

{

perror("sigaction()");

exit(EXIT_FAILURE);

}

for (int i = 0; i < NUMCHLDS; i++)

{

switch(fork())

{

case 0:

                                /*                                 * Older OS implementations that do not correctly implement                                 * the siginfo structure will truncate the exit code                                 * by masking it with 0xFF.                                 */

return 1234567890;

/* NOTREACHED */

case -1:

write(STDERR_FILENO, "fork ERROR!", 11);

exit(EXIT_FAILURE);

/* NOTREACHED */

default:

printf("Child created\");

}

}

while(1)

{

if (nexitedchlds < NUMCHLDS)

pause();

else

exit(EXIT_SUCCESS);

}

return 0;

}

void

sigchld_handler(int signo, siginfo_t *sinfo, void *context)

{

pid_t proc;

while ((proc = waitpid(-1, NULL, WNOHANG)) > 0)

{

/* signal main thread */

nexitedchlds++;

/*

* don't use it in a signal handler.

*/

printf("sinfo->si_pid = %ld\proc = %ld\exit code %d exit reason %d\",

(long)sinfo->si_pid, (long)proc, sinfo->si_status, sinfo->si_code);

}

}

References

1. ^Option -fnon-call-exceptions

External links

  • {{man|sh|sigaction|SUS|examine and change a signal action}}

2 : C POSIX library|Unix signals

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/11/10 13:15:45