rstat.x 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /* @(#)rstat.x 2.2 88/08/01 4.0 RPCSRC */
  2. /*
  3. * Copyright (c) 2010, Oracle America, Inc.
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are
  6. * met:
  7. *
  8. * * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * * Redistributions in binary form must reproduce the above
  11. * copyright notice, this list of conditions and the following
  12. * disclaimer in the documentation and/or other materials
  13. * provided with the distribution.
  14. * * Neither the name of the "Oracle America, Inc." nor the names of its
  15. * contributors may be used to endorse or promote products derived
  16. * from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  21. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  22. * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  23. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  25. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  27. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. /*
  32. * Gather statistics on remote machines
  33. */
  34. #ifdef RPC_HDR
  35. %#ifndef FSCALE
  36. %/*
  37. % * Scale factor for scaled integers used to count load averages.
  38. % */
  39. %#define FSHIFT 8 /* bits to right of fixed binary point */
  40. %#define FSCALE (1<<FSHIFT)
  41. %
  42. %#endif /* ndef FSCALE */
  43. #endif /* def RPC_HDR */
  44. const CPUSTATES = 4;
  45. const DK_NDRIVE = 4;
  46. /*
  47. * GMT since 0:00, January 1, 1970
  48. */
  49. struct rstat_timeval {
  50. unsigned int tv_sec; /* seconds */
  51. unsigned int tv_usec; /* and microseconds */
  52. };
  53. struct statstime { /* RSTATVERS_TIME */
  54. int cp_time[CPUSTATES];
  55. int dk_xfer[DK_NDRIVE];
  56. unsigned int v_pgpgin; /* these are cumulative sum */
  57. unsigned int v_pgpgout;
  58. unsigned int v_pswpin;
  59. unsigned int v_pswpout;
  60. unsigned int v_intr;
  61. int if_ipackets;
  62. int if_ierrors;
  63. int if_oerrors;
  64. int if_collisions;
  65. unsigned int v_swtch;
  66. int avenrun[3]; /* scaled by FSCALE */
  67. rstat_timeval boottime;
  68. rstat_timeval curtime;
  69. int if_opackets;
  70. };
  71. struct statsswtch { /* RSTATVERS_SWTCH */
  72. int cp_time[CPUSTATES];
  73. int dk_xfer[DK_NDRIVE];
  74. unsigned int v_pgpgin; /* these are cumulative sum */
  75. unsigned int v_pgpgout;
  76. unsigned int v_pswpin;
  77. unsigned int v_pswpout;
  78. unsigned int v_intr;
  79. int if_ipackets;
  80. int if_ierrors;
  81. int if_oerrors;
  82. int if_collisions;
  83. unsigned int v_swtch;
  84. unsigned int avenrun[3];/* scaled by FSCALE */
  85. rstat_timeval boottime;
  86. int if_opackets;
  87. };
  88. struct stats { /* RSTATVERS_ORIG */
  89. int cp_time[CPUSTATES];
  90. int dk_xfer[DK_NDRIVE];
  91. unsigned int v_pgpgin; /* these are cumulative sum */
  92. unsigned int v_pgpgout;
  93. unsigned int v_pswpin;
  94. unsigned int v_pswpout;
  95. unsigned int v_intr;
  96. int if_ipackets;
  97. int if_ierrors;
  98. int if_oerrors;
  99. int if_collisions;
  100. int if_opackets;
  101. };
  102. program RSTATPROG {
  103. /*
  104. * Newest version includes current time and context switching info
  105. */
  106. version RSTATVERS_TIME {
  107. statstime
  108. RSTATPROC_STATS(void) = 1;
  109. unsigned int
  110. RSTATPROC_HAVEDISK(void) = 2;
  111. } = 3;
  112. /*
  113. * Does not have current time
  114. */
  115. version RSTATVERS_SWTCH {
  116. statsswtch
  117. RSTATPROC_STATS(void) = 1;
  118. unsigned int
  119. RSTATPROC_HAVEDISK(void) = 2;
  120. } = 2;
  121. /*
  122. * Old version has no info about current time or context switching
  123. */
  124. version RSTATVERS_ORIG {
  125. stats
  126. RSTATPROC_STATS(void) = 1;
  127. unsigned int
  128. RSTATPROC_HAVEDISK(void) = 2;
  129. } = 1;
  130. } = 100001;