]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/m68k/getpagesize.c
Use Linux 6.16, GCC 15, binutils 2.45 in build-many-glibcs.py
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / m68k / getpagesize.c
CommitLineData
26420023 1/* Copyright (C) 2000-2025 Free Software Foundation, Inc.
bb0607a2 2 This file is part of the GNU C Library.
bb0607a2
AS
3
4 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
bb0607a2
AS
8
9 The GNU C Library 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 GNU
3214b89b 12 Lesser General Public License for more details.
bb0607a2 13
3214b89b 14 You should have received a copy of the GNU Lesser General Public
ab84e3ff 15 License along with the GNU C Library. If not, see
5a82c748 16 <https://www.gnu.org/licenses/>. */
bb0607a2
AS
17
18#include <unistd.h>
19#include <sys/param.h>
20#include <errno.h>
21
f71d7f57 22#include <ldsodefs.h>
bb0607a2
AS
23#include <sysdep.h>
24#include <sys/syscall.h>
25
26/* Return the system page size. */
27int
60d2f8f3 28__getpagesize (void)
bb0607a2 29{
bb0607a2 30 int result;
f476000f 31
a7c187d6
UD
32 if (GLRO(dl_pagesize) != 0)
33 return GLRO(dl_pagesize);
bb0607a2 34
bc2eb932 35 result = INTERNAL_SYSCALL_CALL (getpagesize);
bb0607a2 36 /* The only possible error is ENOSYS. */
bc2eb932 37 if (!INTERNAL_SYSCALL_ERROR_P (result))
bb0607a2 38 return result;
bb0607a2 39
f476000f 40 return 4096;
bb0607a2 41}
da5f5f79 42libc_hidden_def (__getpagesize)
bb0607a2 43weak_alias (__getpagesize, getpagesize)