summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorwens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-08 16:55:54 +0800
committerwens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-03-08 16:55:54 +0800
commit8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a (patch)
treec0e12c11e4aa726ea3ff950b007de9edb4ffd6e0 /include
parentbf85ed1d1979c65a6bb93ae965dd50282e6326a5 (diff)
downloadpttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.tar
pttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.tar.gz
pttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.tar.bz2
pttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.tar.lz
pttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.tar.xz
pttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.tar.zst
pttbbs-8e81df07a3e3ea7abc2159e9ebb5bef6b9caf68a.zip
add support for hugetblpage of Linux 2.6
do not use this if you do not know what this is git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2581 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r--include/common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index cff8cbf4..a17e7a15 100644
--- a/include/common.h
+++ b/include/common.h
@@ -213,4 +213,8 @@
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
+#ifndef SHM_HUGETLB
+#define SHM_HUGETLB 04000 /* segment is mapped via hugetlb */
+#endif
+
#endif