Imported from ../bash-2.01.tar.gz.
[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 #  else
23 #    if defined (_SC_PAGE_SIZE)
24 #      define getpagesize() sysconf(_SC_PAGE_SIZE)
25 #    endif /* _SC_PAGE_SIZE */
26 #  endif /* _SC_PAGESIZE */
27 #endif
28
29 #if !defined (getpagesize)
30 #  include <sys/param.h>
31 #  if defined (PAGESIZE)
32 #     define getpagesize() PAGESIZE
33 #  else /* !PAGESIZE */
34 #    if defined (EXEC_PAGESIZE)
35 #      define getpagesize() EXEC_PAGESIZE
36 #    else /* !EXEC_PAGESIZE */
37 #      if defined (NBPG)
38 #        if !defined (CLSIZE)
39 #          define CLSIZE 1
40 #        endif /* !CLSIZE */
41 #        define getpagesize() (NBPG * CLSIZE)
42 #      else /* !NBPG */
43 #        if defined (NBPC)
44 #          define getpagesize() NBPC
45 #        endif /* NBPC */
46 #      endif /* !NBPG */
47 #    endif /* !EXEC_PAGESIZE */
48 #  endif /* !PAGESIZE */
49 #endif /* !getpagesize */
50
51 #if !defined (getpagesize)
52 #  define getpagesize() 4096  /* Just punt and use reasonable value */
53 #endif