0cb441617fe385844e09b030aca3e680034fa6e0
[platform/upstream/bash.git] / lib / malloc / getpagesize.h
1 /* Emulation of getpagesize() for systems that need it.
2    Copyright (C) 1991 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 #if defined (HAVE_UNISTD_H)
19 #  include <unistd.h>
20 #  if defined (_SC_PAGESIZE)
21 #    define getpagesize() sysconf(_SC_PAGESIZE)
22 #  endif /* _SC_PAGESIZE */
23 #endif
24
25 #if !defined (getpagesize)
26 #  include <sys/param.h>
27 #  if defined (PAGESIZE)
28 #     define getpagesize() PAGESIZE
29 #  else /* !PAGESIZE */
30 #    if defined (EXEC_PAGESIZE)
31 #      define getpagesize() EXEC_PAGESIZE
32 #    else /* !EXEC_PAGESIZE */
33 #      if defined (NBPG)
34 #        if !defined (CLSIZE)
35 #          define CLSIZE 1
36 #        endif /* !CLSIZE */
37 #        define getpagesize() (NBPG * CLSIZE)
38 #      else /* !NBPG */
39 #        if defined (NBPC)
40 #          define getpagesize() NBPC
41 #        endif /* NBPC */
42 #      endif /* !NBPG */
43 #    endif /* !EXEC_PAGESIZE */
44 #  endif /* !PAGESIZE */
45 #endif /* !getpagesize */
46
47 #if !defined (getpagesize)
48 #  define getpagesize() 4096  /* Just punt and use reasonable value */
49 #endif