tdsignal (9)
Leading comments
Copyright (c) 1996 The NetBSD Foundation, Inc. All rights reserved. This code is derived from software contributed to The NetBSD Foundation by Paul Kranenburg. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce th...
NAME
psignal pgsignal gsignal tdsignal - post signal to a thread, process, or process groupSYNOPSIS
In sys/types.h In sys/signalvar.h Ft void Fn psignal struct proc *p int signum Ft void Fn pgsignal struct pgrp *pgrp int signum int checkctty Ft void Fn gsignal int pgid int signum Ft void Fn tdsignal struct thread *td int signumDESCRIPTION
These functions post a signal to a thread or one or more processes. The argument Fa signum common to all three functions should be in the range Bq 1- Ns Dv NSIG .The Fn psignal function posts signal number Fa signum to the process represented by the process structure Fa p . With a few exceptions noted below, the target process signal disposition is updated and is marked as runnable, so further handling of the signal is done in the context of the target process after a context switch. Note that Fn psignal does not by itself cause a context switch to happen.
The target process is not marked as runnable in the following cases:
- The target process is sleeping uninterruptibly. The signal will be noticed when the process returns from the system call or trap.
- The target process is currently ignoring the signal.
- If a stop signal is sent to a sleeping process that takes the default action (see sigaction(2)), the process is stopped without awakening it.
- SIGCONT restarts a stopped process (or puts them back to sleep) regardless of the signal action (e.g., blocked or ignored).
If the target process is being traced Fn psignal behaves as if the target process were taking the default action for Fa signum . This allows the tracing process to be notified of the signal.
The Fn pgsignal function posts signal number Fa signum to each member of the process group described by Fa pgrp . If Fa checkctty is non-zero, the signal will be posted only to processes that have a controlling terminal. Fn pgsignal is implemented by walking along the process list headed by the field pg_members of the process group structure pointed at by Fa pgrp and calling Fn psignal as appropriate. If Fa pgrp is NULL no action is taken.
The Fn gsignal function posts signal number Fa signum to each member of the process group identified by the group id Fa pgid . Fn gsignal first finds the group structure associated with Fa pgid , then invokes Fn pgsignal with the argument Fa checkctty set to zero. If Fa pgid is zero no action is taken.
The Fn tdsignal function posts signal number Fa signum to the thread represented by the thread structure Fa td .