mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-14 21:32:49 -08:00
Fixed mmap.d, which used a Linux-only flag, MAP_FILE.
This commit is contained in:
parent
5a22fc4b36
commit
e4d9d008e7
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@
|
|||
len = ecl_to_unsigned_integer(length);
|
||||
stream = Cnil;
|
||||
} else {
|
||||
c_flags = MAP_FILE;
|
||||
c_flags = MAP_SHARED;
|
||||
stream = cl_open(13, filename,
|
||||
@':direction', direction,
|
||||
@':element-type', element_type,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue