Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Oct 2011 22:14:18 +0000 (UTC)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r226119 - head/share/man/man9
Message-ID:  <201110072214.p97MEIBr029903@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Fri Oct  7 22:14:18 2011
New Revision: 226119
URL: http://svn.freebsd.org/changeset/base/226119

Log:
  Mention tdsignal(9).
  
  MFC after:	1 week

Modified:
  head/share/man/man9/Makefile
  head/share/man/man9/psignal.9

Modified: head/share/man/man9/Makefile
==============================================================================
--- head/share/man/man9/Makefile	Fri Oct  7 21:23:42 2011	(r226118)
+++ head/share/man/man9/Makefile	Fri Oct  7 22:14:18 2011	(r226119)
@@ -972,7 +972,8 @@ MLINKS+=printf.9 log.9 \
 MLINKS+=priv.9 priv_check.9 \
 	priv.9 priv_check_cred.9
 MLINKS+=psignal.9 gsignal.9 \
-	psignal.9 pgsignal.9
+	psignal.9 pgsignal.9 \
+	psignal.9 tdsignal.9
 MLINKS+=random.9 arc4rand.9 \
 	random.9 arc4random.9 \
 	random.9 read_random.9 \

Modified: head/share/man/man9/psignal.9
==============================================================================
--- head/share/man/man9/psignal.9	Fri Oct  7 21:23:42 2011	(r226118)
+++ head/share/man/man9/psignal.9	Fri Oct  7 22:14:18 2011	(r226119)
@@ -28,14 +28,15 @@
 .\"	$NetBSD: psignal.9,v 1.1 1996/06/22 22:57:35 pk Exp $
 .\" $FreeBSD$
 .\"
-.Dd June 22, 1996
+.Dd October 8, 2011
 .Dt PSIGNAL 9
 .Os
 .Sh NAME
 .Nm psignal ,
 .Nm pgsignal ,
-.Nm gsignal
-.Nd post signal to a process or process group
+.Nm gsignal ,
+.Nm tdsignal
+.Nd post signal to a thread, process, or process group
 .Sh SYNOPSIS
 .In sys/types.h
 .In sys/signalvar.h
@@ -45,8 +46,10 @@
 .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 signum"
 .Sh DESCRIPTION
-These functions post a signal to one or more processes.
+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
@@ -135,6 +138,13 @@ set to zero.
 If
 .Fa pgid
 is zero no action is taken.
+.Pp
+The
+.Fn tdsignal
+function posts signal number
+.Fa signum
+to the thread represented by the thread structure
+.Fa td .
 .Sh SEE ALSO
 .Xr sigaction 2 ,
 .Xr signal 9 ,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110072214.p97MEIBr029903>