1 '\" te
   2 .\"  Copyright 1989 AT&T  Copyright (c) 1997, Sun Microsystems, Inc.  All Rights Reserved
   3 .\" 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.
   4 .\" 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.
   5 .\" 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]
   6 .TH RSTAT 3RPC "Dec 30, 1996"
   7 .SH NAME
   8 rstat, havedisk \- get performance data from remote kernel
   9 .SH SYNOPSIS
  10 .LP
  11 .nf
  12 \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lrpcsvc\fR [ \fIlibrary\fR ... ]
  13 #include <rpc/rpc.h>
  14 #include <rpcsvc/rstat.h>
  15 
  16 \fBenum clnt_stat\fR \fBrstat\fR(\fBchar *\fR\fIhost\fR, \fBstruct statstime *\fR\fIstatp\fR);
  17 .fi
  18 
  19 .LP
  20 .nf
  21 \fBint\fR \fBhavedisk\fR(\fBchar *\fR\fIhost\fR);
  22 .fi
  23 
  24 .SH PROTOCOL
  25 .LP
  26 \fB/usr/include/rpcsvc/rstat.x\fR
  27 .SH DESCRIPTION
  28 .LP
  29 These routines require that the \fBrpc.rstatd\fR(1M) daemon be configured and
  30 available on the remote system indicated by \fIhost\fR. The \fBrstat()\fR
  31 protocol is used to gather statistics from remote kernel.  Statistics will be
  32 available on items such as paging, swapping, and cpu utilization.
  33 .sp
  34 .LP
  35 \fBrstat()\fR fills in the \fBstatstime\fR structure \fIstatp\fR for
  36 \fIhost\fR.  \fIstatp\fR must point to an allocated \fBstatstime\fR structure.
  37 \fBrstat()\fR returns \fBRPC_SUCCESS\fR if it was successful; otherwise a
  38 \fBenum clnt_stat\fR is returned which can be displayed using
  39 \fBclnt_perrno\fR(3NSL).
  40 .sp
  41 .LP
  42 \fBhavedisk()\fR returns \fB1\fR if \fIhost\fR has disk, \fB0\fR if it does
  43 not, and \fB\(mi1\fR if this cannot be determined.
  44 .sp
  45 .LP
  46 The following XDR routines are available in \fBlibrpcsvc\fR:
  47 .sp
  48 .in +2
  49 .nf
  50 xdr_statstime
  51 xdr_statsvar
  52 .fi
  53 .in -2
  54 .sp
  55 
  56 .SH ATTRIBUTES
  57 .LP
  58 See \fBattributes\fR(5) for descriptions of the following attributes:
  59 .sp
  60 
  61 .sp
  62 .TS
  63 box;
  64 c | c
  65 l | l .
  66 ATTRIBUTE TYPE  ATTRIBUTE VALUE
  67 _
  68 MT-Level        MT-Safe
  69 .TE
  70 
  71 .SH SEE ALSO
  72 .LP
  73 \fBrpc_clnt_calls\fR(3NSL), \fBattributes\fR(5)