From a9e607158671c1d8625125a58bbd40dd18acb8b5 Mon Sep 17 00:00:00 2001 From: in2 Date: Wed, 10 Aug 2005 08:35:32 +0000 Subject: user defined SHMALIGNEDSIZE. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3023 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- include/pttstruct.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/pttstruct.h b/include/pttstruct.h index 7c5a12a6..1167fb33 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -586,8 +586,8 @@ typedef struct { #endif } SHM_t; -#ifdef USE_HUGETLB // 4MB aligned -# define SHMSIZE (sizeof(SHM_t)/(1048576*4)+1)*1048576*4 +#ifdef SHMALIGNEDSIZE +# define SHMSIZE (sizeof(SHM_t)/(SHMALIGNEDSIZE)+1)*SHMALIGNEDSIZE #else # define SHMSIZE (sizeof(SHM_t)) #endif -- cgit v1.2.3