Revision: 1047
http://svn.sourceforge.net/r-gregmisc/?rev=1047&view=rev
Author: warnes
Date: 2007-02-05 15:21:52 -0800 (Mon, 05 Feb 2007)
Log Message:
-----------
Add documentation for signal()
Modified Paths:
--------------
trunk/fork/man/signal.Rd
Modified: trunk/fork/man/signal.Rd
===================================================================
--- trunk/fork/man/signal.Rd 2007-02-05 23:21:39 UTC (rev 1046)
+++ trunk/fork/man/signal.Rd 2007-02-05 23:21:52 UTC (rev 1047)
@@ -15,8 +15,8 @@
\details{
It is occasionally necessary to instruct the R process to ignore
certain signals. This function allows changing the status of a signal
- to either igore the signal (SIG_IGN="ignore") or to the OS's default
- handler (SIG_DFL="default")
+ to either igore the signal (SIG\_IGN="ignore") or to the OS's default
+ handler (SIG\_DFL="default")
}
\value{
Nothing of interest.
@@ -29,7 +29,7 @@
}
\seealso{ \code{\link{sigval}}, \code{\link{fork}} }
\examples{
-
+\dontrun{
# Ignore child termination signals for forked processes
signal("SIGCHLD","ignore")
@@ -42,8 +42,8 @@
exit() # force process to die
}
}
-
}
+}
% Add one or more standard keywords, see file 'KEYWORDS' in the
% R documentation directory.
\keyword{programming}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|