diff options
author | Marcel Telka <marcel@telka.sk> | 2017-05-18 11:41:38 +0200 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2017-05-24 17:14:06 +0000 |
commit | 469e2fcc7752c46800bfcf054ab8924378137927 (patch) | |
tree | fd57fdd5f22eb0cdaab9911af621b0a0774f8c81 /usr/src | |
parent | f6d08325130f87525523d7797367a61969bf61b5 (diff) | |
download | illumos-joyent-469e2fcc7752c46800bfcf054ab8924378137927.tar.gz |
4713 rpc_svc_create(3nsl): "for the given program" is strange
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Yuri Pankov <yuri.pankov@gmail.com>
Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/man/man3nsl/rpc_svc_create.3nsl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr/src/man/man3nsl/rpc_svc_create.3nsl b/usr/src/man/man3nsl/rpc_svc_create.3nsl index 4344a399a5..b70380a244 100644 --- a/usr/src/man/man3nsl/rpc_svc_create.3nsl +++ b/usr/src/man/man3nsl/rpc_svc_create.3nsl @@ -5,7 +5,7 @@ .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH RPC_SVC_CREATE 3NSL "Nov 24, 2014" +.TH RPC_SVC_CREATE 3NSL "May 18, 2017" .SH NAME rpc_svc_create, svc_control, svc_create, svc_destroy, svc_dg_create, svc_fd_create, svc_raw_create, svc_tli_create, svc_tp_create, svc_vc_create, @@ -44,7 +44,7 @@ svc_door_create \- server handle creation routines .LP .nf -\fBSVCXPRT *\fR\fBsvc_raw_create\fR(void) +\fBSVCXPRT *\fR\fBsvc_raw_create\fR(void); .fi .LP @@ -350,9 +350,10 @@ bound. The server is not registered with the \fBrpcbind\fR(1M) service. \fB\fBsvc_door_create()\fR\fR .ad .RS 21n -This routine creates an RPC server handle over doors and returns a pointer to +This routine creates an RPC server handle over doors for the given program +\fIprognum\fR and version \fIversnum\fR and returns a pointer to it. Doors is a transport mechanism that facilitates fast data transfer between -processes on the same machine. for the given program The user may set the size +processes on the same machine. The user may set the size of the send buffer with the parameter \fIsendsz\fR. If \fIsendsz\fR is 0, the corresponding default buffer size is 16 Kbyte. If successful, the \fBsvc_door_create()\fR routine returns the service handle. Otherwise it |