/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #ifndef AFS_PARAM_H #define AFS_PARAM_H #ifndef UKERNEL /* This section for kernel libafs compiles only */ #define AFS_SPARC64_LINUX20_ENV 1 #define AFS_SPARC64_LINUX22_ENV 1 #define AFS_SPARC64_LINUX24_ENV 1 #define AFS_SPARC64_LINUX26_ENV 1 #define AFS_LINUX_64BIT_KERNEL 1 #define AFS_64BITPOINTER_ENV 1 /* pointers are 64 bits. */ #define AFS_32BIT_USR_ENV 1 /* user level processes are 32bit */ /* * on sparclinux is O_LARGEFILE defined but there is not off64_t, * so small hack to get usd_file.c work */ #ifndef KERNEL #define __USE_FILE_OFFSET64 1 #define __USE_LARGEFILE64 1 #if !defined off64_t #define off64_t __off64_t #endif #endif #else /* !defined(UKERNEL) */ /* This section for user space compiles only */ #define UKERNEL 1 /* user space kernel */ #endif /* !defined(UKERNEL) */ /* Machine / Operating system information */ #define SYS_NAME "sparc64_linux26" #define SYS_NAME_ID SYS_NAME_ID_sparc64_linux26 #define AFS_SYSCALL 227 #define AFSBIG_ENDIAN 1 #endif /* AFS_PARAM_H */