1 /* 2 * Copyright (c) 2000-2001 Proofpoint, Inc. and its suppliers. 3 * All rights reserved. 4 * 5 * By using this file, you agree to the terms and conditions set 6 * forth in the LICENSE file which can be found at the top level of 7 * the sendmail distribution. 8 * 9 * $Id: sm_os_hp.h,v 1.9 2013-11-22 20:51:34 ca Exp $ 10 */ 11 12 /* 13 ** sm_os_hp.h -- platform definitions for HP 14 */ 15 16 #define SM_OS_NAME "hp" 17 18 #ifndef SM_CONF_SHM 19 # define SM_CONF_SHM 1 20 #endif /* SM_CONF_SHM */ 21 #ifndef SM_CONF_SEM 22 # define SM_CONF_SEM 2 23 #endif /* SM_CONF_SEM */ 24 #ifndef SM_CONF_MSG 25 # define SM_CONF_MSG 1 26 #endif /* SM_CONF_MSG */ 27 28 /* max/min buffer size of other than regular files */ 29 #ifndef SM_IO_MAX_BUF 30 # define SM_IO_MAX_BUF 8192 31 #endif /* SM_IO_MAX_BUF */ 32 #ifndef SM_IO_MIN_BUF 33 # define SM_IO_MIN_BUF 4096 34 #endif /* SM_IO_MIN_BUF */ 35