linux-os.lisp calls unix:unix-getpagesize
Describe the bug
There's a compiler warning that in linux-os.lisp, get-page-size
is calling the unknown function unix:unix-getpagesize
To Reproduce
Steps to reproduce the behavior:
- Compile cmucl
- Look at compile-lisp.log at the end where there's a warning that
UNIX:UNIX-GETPAGESIZE
is undefined.
Expected behavior
There shouldn't be a warning
Desktop (please complete the following information):
- OS: Linux
- Version: 21e
Additional context
This is related to #257 because of the warning. We should probably
remove get-page-size
from linux-os.lisp; it should be using
get-page-size
from os.lisp.
A disassembly of get-page-size
does show that we're using
os_get_page_size
, so linux is using the version from os.lisp.
We probably missed this when fixing #180 (closed).