Skip to content

Commit 1e01515

Browse files
committed
use mmap:madvise natively
1 parent 70ae9ab commit 1e01515

File tree

3 files changed

+3
-28
lines changed

3 files changed

+3
-28
lines changed

hypergeometrica.asd

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
:components ((:file "package")
2828
(:file "config")
2929
(:file "logging")
30-
(:file "mmap-patches" :if-feature :linux)
3130
(:file "mmap")
3231
(:file "timing-utilities")
3332
(:file "math-utilities")

src/mmap-patches.lisp

-24
This file was deleted.

src/mmap.lisp

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,21 @@
4747
#+linux
4848
(mmap:madvise (mmap-data-pointer data)
4949
(mmap-data-size data)
50-
':madv-normal)
50+
':normal)
5151
nil)
5252

5353
(defun madvise-random (data)
5454
(check-type data mmap-data)
5555
#+linux
5656
(mmap:madvise (mmap-data-pointer data)
5757
(mmap-data-size data)
58-
':madv-random)
58+
':random)
5959
nil)
6060

6161
(defun madvise-sequential (data)
6262
(check-type data mmap-data)
6363
#+linux
6464
(mmap:madvise (mmap-data-pointer data)
6565
(mmap-data-size data)
66-
':madv-sequential)
66+
':sequential)
6767
nil)

0 commit comments

Comments
 (0)