1997-08-22 00:57:35 +02:00
|
|
|
/* Emulation of getpagesize() for systems that need it. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
alloca.c, [...]: Improve manual formatting.
* alloca.c, clock.c, getcwd.c, getpagesize.c, getpwd.c, index.c,
libiberty.texi, memchr.c, putenv.c, rindex.c, strchr.c, strdup.c,
strerror.c, strrchr.c, strstr.c, strtod.c, tmpnam.c, vfork.c,
xatexit.c, xmalloc.c, xstrerror.c: Improve manual formatting. Fix
spelling. Give names to function arguments in documentation. Use
(void) prototypes in documentation.
* functions.texi: Regenerate.
From-SVN: r46068
2001-10-07 23:53:31 +02:00
|
|
|
@deftypefn Supplemental int getpagesize (void)
|
1997-08-22 00:57:35 +02:00
|
|
|
|
configure.in (MAKEINFO, PERL): Detect these.
* configure.in (MAKEINFO, PERL): Detect these.
(--enable-maintainer-mode): Add.
* configure: Regenerate.
* Makefile.in (MAKEINFO, PERL): Define.
(libiberty.info, libiberty.dvi, libiberty.html): New.
(CFILES): Add bsearch.c.
(CONFIGURED_OFILES): New, list of objects configure might add.
(maint-missing, maint-buildall): New, for maintainers only.
(clean, mostlyclean): Add info/dvi/html files.
* libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
* gather-docs: New, for maintainers.
* maint-tool: New, for maintainers.
* alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
documentation.
Co-Authored-By: Phil Edwards <pedwards@disaster.jaj.com>
From-SVN: r45828
2001-09-26 20:16:17 +02:00
|
|
|
Returns the number of bytes in a page of memory. This is the
|
|
|
|
granularity of many of the system memory management routines. No
|
|
|
|
guarantee is made as to whether or not it is the same as the basic
|
|
|
|
memory management hardware page size.
|
1997-08-22 00:57:35 +02:00
|
|
|
|
configure.in (MAKEINFO, PERL): Detect these.
* configure.in (MAKEINFO, PERL): Detect these.
(--enable-maintainer-mode): Add.
* configure: Regenerate.
* Makefile.in (MAKEINFO, PERL): Define.
(libiberty.info, libiberty.dvi, libiberty.html): New.
(CFILES): Add bsearch.c.
(CONFIGURED_OFILES): New, list of objects configure might add.
(maint-missing, maint-buildall): New, for maintainers only.
(clean, mostlyclean): Add info/dvi/html files.
* libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
* gather-docs: New, for maintainers.
* maint-tool: New, for maintainers.
* alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
documentation.
Co-Authored-By: Phil Edwards <pedwards@disaster.jaj.com>
From-SVN: r45828
2001-09-26 20:16:17 +02:00
|
|
|
@end deftypefn
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
BUGS
|
|
|
|
|
|
|
|
Is intended as a reasonable replacement for systems where this
|
|
|
|
is not provided as a system call. The value of 4096 may or may
|
|
|
|
not be correct for the systems where it is returned as the default
|
|
|
|
value.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VMS
|
|
|
|
|
1998-05-16 01:42:58 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
#include <sys/types.h>
|
1998-05-16 01:42:58 +02:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
1997-08-22 00:57:35 +02:00
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
1998-05-21 09:52:41 +02:00
|
|
|
#undef GNU_OUR_PAGESIZE
|
|
|
|
#if defined (HAVE_SYSCONF) && defined (HAVE_UNISTD_H)
|
1997-08-22 00:57:35 +02:00
|
|
|
#include <unistd.h>
|
1998-05-21 09:52:41 +02:00
|
|
|
#ifdef _SC_PAGESIZE
|
1997-08-22 00:57:35 +02:00
|
|
|
#define GNU_OUR_PAGESIZE sysconf(_SC_PAGESIZE)
|
1998-05-21 09:52:41 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GNU_OUR_PAGESIZE
|
|
|
|
# ifdef PAGESIZE
|
|
|
|
# define GNU_OUR_PAGESIZE PAGESIZE
|
|
|
|
# else /* no PAGESIZE */
|
|
|
|
# ifdef EXEC_PAGESIZE
|
|
|
|
# define GNU_OUR_PAGESIZE EXEC_PAGESIZE
|
|
|
|
# else /* no EXEC_PAGESIZE */
|
|
|
|
# ifdef NBPG
|
|
|
|
# define GNU_OUR_PAGESIZE (NBPG * CLSIZE)
|
|
|
|
# ifndef CLSIZE
|
|
|
|
# define CLSIZE 1
|
|
|
|
# endif /* CLSIZE */
|
|
|
|
# else /* no NBPG */
|
|
|
|
# ifdef NBPC
|
|
|
|
# define GNU_OUR_PAGESIZE NBPC
|
|
|
|
# else /* no NBPC */
|
|
|
|
# define GNU_OUR_PAGESIZE 4096 /* Just punt and use reasonable value */
|
|
|
|
# endif /* NBPC */
|
|
|
|
# endif /* NBPG */
|
|
|
|
# endif /* EXEC_PAGESIZE */
|
|
|
|
# endif /* PAGESIZE */
|
|
|
|
#endif /* GNU_OUR_PAGESIZE */
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
getpagesize ()
|
|
|
|
{
|
|
|
|
return (GNU_OUR_PAGESIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* VMS */
|
|
|
|
|
|
|
|
#if 0 /* older distributions of gcc-vms are missing <syidef.h> */
|
|
|
|
#include <syidef.h>
|
|
|
|
#endif
|
|
|
|
#ifndef SYI$_PAGE_SIZE /* VMS V5.4 and earlier didn't have this yet */
|
|
|
|
#define SYI$_PAGE_SIZE 4452
|
|
|
|
#endif
|
|
|
|
extern unsigned long lib$getsyi(const unsigned short *,...);
|
|
|
|
|
|
|
|
int getpagesize ()
|
|
|
|
{
|
|
|
|
long pagsiz = 0L;
|
|
|
|
unsigned short itmcod = SYI$_PAGE_SIZE;
|
|
|
|
|
|
|
|
(void) lib$getsyi (&itmcod, (void *) &pagsiz);
|
|
|
|
if (pagsiz == 0L)
|
|
|
|
pagsiz = 512L; /* VAX default */
|
|
|
|
return (int) pagsiz;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* VMS */
|