File: sendMaster.Rd

package info (click to toggle)
r-cran-multicore 0.1-3-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 116 kB
  • ctags: 34
  • sloc: ansic: 446; makefile: 1
file content (30 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
\name{sendMaster}
\alias{sendMaster}
\title{
  Sends data from the child to to the master process
}
\description{
  \code{sendMaster} Sends data from the child to to the master process
}
\usage{
sendMaster(what)
}
\arguments{
\item{what}{data to send to the master process. If \code{what} is not
a raw vetor, \code{what} will be serialized into a raw vector. Do NOT
send an empty raw vector - it is reserved for internal use.}
}
\value{
  returns \code{TRUE}
}
\details{
  Any child process (created by \code{\link{fork}} directly or by
  \code{\link{parallel}} indirectly) can send data to the parent
  (master) process. Usually this is used to deliver results from the
  parallel child processes to the master process.
}
\seealso{
  \code{\link{parallel}}, \code{\link{fork}}
}
\author{Simon Urbanek}
\keyword{interface}