home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / amd / part02 / os-xinu43.h < prev    next >
C/C++ Source or Header  |  1990-04-10  |  3KB  |  96 lines

  1. /* $Id: os-xinu43.h,v 5.1.1.2 89/11/28 18:05:43 jsp Exp Locker: jsp $ */
  2.  
  3. /*
  4.  * mt Xinu 4.3 (MORE/bsd) definitions for Amd (automounter)
  5.  * Should work on both Vax and HP ...
  6.  *
  7.  * Copyright (c) 1989 Jan-Simon Pendry
  8.  * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
  9.  * Copyright (c) 1989 The Regents of the University of California.
  10.  * All rights reserved.
  11.  *
  12.  * This code is derived from software contributed to Berkeley by
  13.  * Jan-Simon Pendry at Imperial College, London.
  14.  *
  15.  * Redistribution and use in source and binary forms are permitted
  16.  * provided that the above copyright notice and this paragraph are
  17.  * duplicated in all such forms and that any documentation,
  18.  * advertising materials, and other materials related to such
  19.  * distribution and use acknowledge that the software was developed
  20.  * by Imperial College of Science, Technology and Medicine, London, UK.
  21.  * The names of the College and University may not be used to endorse
  22.  * or promote products derived from this software without specific
  23.  * prior written permission.
  24.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  25.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  26.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27.  *
  28.  *    %W% (Berkeley) %G%
  29.  */
  30.  
  31. /*
  32.  * Does the compiler grok void *
  33.  */
  34. #define    VOIDP
  35.  
  36. /*
  37.  * Which version of the Sun RPC library we are using
  38.  * This is the implementation release number, not
  39.  * the protocol revision number.
  40.  */
  41. #define    RPC_4
  42.  
  43. /*
  44.  * mt Xinu have a compatibility problem
  45.  * with getreq vs. getreqset.  On SunOS
  46.  * getreqset takes a pointer to an fd_set,
  47.  * whereas on MORE/bsd, getreq takes a
  48.  * fd_set directly (cf. an integer on SunOS).
  49.  */
  50. #define    svc_getreqset(p)    svc_getreq(*p)
  51.  
  52. /*
  53.  * Which version of the NFS interface are we using.
  54.  * This is the implementation release number, not
  55.  * the protocol revision number.
  56.  */
  57. #define    NFS_4
  58.  
  59. /*
  60.  * Name of filesystem types
  61.  */
  62. #define    MOUNT_TYPE_NFS    "nfs"
  63. #define    MOUNT_TYPE_UFS    "ufs"
  64. #undef MTAB_TYPE_UFS
  65. #define    MTAB_TYPE_UFS    "ufs"
  66.  
  67. /*
  68.  * Byte ordering
  69.  */
  70. #ifndef BYTE_ORDER
  71. #include <machine/endian.h>
  72. #endif /* BYTE_ORDER */
  73.  
  74. #undef ARCH_ENDIAN
  75. #if BYTE_ORDER == LITTLE_ENDIAN
  76. #define ARCH_ENDIAN "little"
  77. #else
  78. #if BYTE_ORDER == BIG_ENDIAN
  79. #define ARCH_ENDIAN "big"
  80. #else
  81. XXX - Probably no hope of running Amd on this machine!
  82. #endif /* BIG */
  83. #endif /* LITTLE */
  84.  
  85. /*
  86.  * Type of a file handle
  87.  */
  88. #undef NFS_FH_TYPE
  89. #define NFS_FH_TYPE     caddr_t
  90.  
  91. /*
  92.  * Type of filesystem type
  93.  */
  94. #undef MTYPE_TYPE
  95. #define    MTYPE_TYPE    char *
  96.