sm_inter.x
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* @(#)sm_inter.x 2.2 88/08/01 4.0 RPCSRC */
  2. /* @(#)sm_inter.x 1.7 87/06/24 Copyr 1987 Sun Micro */
  3. /*
  4.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  5.  * unrestricted use provided that this legend is included on all tape
  6.  * media and as a part of the software program in whole or part.  Users
  7.  * may copy or modify Sun RPC without charge, but are not authorized
  8.  * to license or distribute it to anyone else except as part of a product or
  9.  * program developed by the user.
  10.  *
  11.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  12.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  13.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  14.  *
  15.  * Sun RPC is provided with no support and without any obligation on the
  16.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  17.  * modification or enhancement.
  18.  *
  19.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  20.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  21.  * OR ANY PART THEREOF.
  22.  *
  23.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  24.  * or profits or other special, indirect and consequential damages, even if
  25.  * Sun has been advised of the possibility of such damages.
  26.  *
  27.  * Sun Microsystems, Inc.
  28.  * 2550 Garcia Avenue
  29.  * Mountain View, California  94043
  30.  */
  31. /*
  32.  * Status monitor protocol specification
  33.  * Copyright (C) 1986 Sun Microsystems, Inc.
  34.  *
  35.  */
  36. program SM_PROG {
  37. version SM_VERS  {
  38. /* res_stat = stat_succ if status monitor agrees to monitor */
  39. /* res_stat = stat_fail if status monitor cannot monitor */
  40. /* if res_stat == stat_succ, state = state number of site sm_name */
  41. struct sm_stat_res  SM_STAT(struct sm_name) = 1;
  42. /* res_stat = stat_succ if status monitor agrees to monitor */
  43. /* res_stat = stat_fail if status monitor cannot monitor */
  44. /* stat consists of state number of local site */
  45. struct sm_stat_res  SM_MON(struct mon) = 2;
  46. /* stat consists of state number of local site */
  47. struct sm_stat  SM_UNMON(struct mon_id) = 3;
  48. /* stat consists of state number of local site */
  49. struct sm_stat  SM_UNMON_ALL(struct my_id) = 4;
  50. void  SM_SIMU_CRASH(void) = 5;
  51. } = 1;
  52. } = 100024;
  53. const SM_MAXSTRLEN = 1024;
  54. struct sm_name {
  55. string mon_name<SM_MAXSTRLEN>;
  56. };
  57. struct my_id {
  58. string  my_name<SM_MAXSTRLEN>; /* name of the site initiating the monitoring request*/
  59. int my_prog; /* rpc program # of the requesting process */
  60. int my_vers; /* rpc version # of the requesting process */
  61. int my_proc; /* rpc procedure # of the requesting process */
  62. };
  63. struct mon_id {
  64. string mon_name<SM_MAXSTRLEN>; /* name of the site to be monitored */
  65. struct my_id my_id;
  66. };
  67. struct mon{
  68. struct mon_id mon_id;
  69. opaque priv[16];  /* private information to store at monitor for requesting process */
  70. };
  71. /*
  72.  * state # of status monitor monotonically increases each time
  73.  * status of the site changes:
  74.  * an even number (>= 0) indicates the site is down and
  75.  * an odd number (> 0) indicates the site is up;
  76.  */
  77. struct sm_stat {
  78. int state; /* state # of status monitor */
  79. };
  80. enum res {
  81. stat_succ = 0, /* status monitor agrees to monitor */
  82. stat_fail = 1 /* status monitor cannot monitor */
  83. };
  84. struct sm_stat_res {
  85. res res_stat;
  86. int state;
  87. };
  88. /*
  89.  * structure of the status message sent back by the status monitor
  90.  * when monitor site status changes
  91.  */
  92. struct status {
  93. string mon_name<SM_MAXSTRLEN>;
  94. int state;
  95. opaque priv[16]; /* stored private information */
  96. };