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

  1. /* $Id: os-aux.h,v 5.1 89/11/17 18:22:42 jsp Exp Locker: jsp $ */
  2.  
  3. /*
  4.  * A/UX macII definitions for Amd (automounter)
  5.  * Contributed by Julian Onions <jpo@cs.nott.ac.uk>
  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_3
  42.  
  43. /*
  44.  * Which version of the NFS interface are we using.
  45.  * This is the implementation release number, not
  46.  * the protocol revision number.
  47.  */
  48. #define    NFS_3
  49.  
  50. /*
  51.  * Byte ordering
  52.  */
  53. #undef ARCH_ENDIAN
  54. #define    ARCH_ENDIAN    "big"
  55.  
  56. /*
  57.  * Has support for syslog()
  58.  */
  59. #define HAS_SYSLOG
  60.  
  61. /*
  62.  * No support for ndbm
  63.  */
  64. #undef OS_HAS_NDBM
  65.  
  66. /*
  67.  * Name of filesystem types
  68.  */
  69. #define    MOUNT_TYPE_UFS    MOUNT_UFS
  70. #define MOUNT_TYPE_NFS MOUNT_NFS
  71.  
  72. #undef MTAB_TYPE_UFS
  73. #define    MTAB_TYPE_UFS    "5.2"
  74.  
  75. #define SIGCHLD    SIGCLD
  76. #define    SYS5_SIGNALS
  77.  
  78. /*
  79.  * Use <fcntl.h> rather than <sys/file.h>
  80.  */
  81. #define USE_FCNTL
  82.  
  83. /*
  84.  * Use fcntl() rather than flock()
  85.  */
  86. #define LOCK_FCNTL
  87.  
  88. #ifdef __GNUC__
  89. #define alloca(sz) __builtin_alloca(sz)
  90. #endif
  91.  
  92. #define    bzero(ptr, len)    memset(ptr, 0, len)
  93. #define bcopy(from, to, len) memcpy(to, from, len)
  94. #define getpagesize() (2048)
  95. #undef MOUNT_TRAP
  96. #define MOUNT_TRAP(type, mnt, flags, mnt_data) \
  97.     fsmount(type, mnt->mnt_dir, flags, mnt_data)
  98. #undef UNMOUNT_TRAP
  99. #define    UNMOUNT_TRAP(mnt)    unmount(mnt->mnt_dir)
  100. #define NFDS    30    /* conservative */
  101.  
  102. /* not included in sys/param.h */
  103. #include <sys/types.h>
  104. /* not part of sys/time.h */
  105. #include <time.h>
  106. /* for NMOUNT */
  107. #include <sys/config.h>
  108.