mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Export _mmap and __sys_mmap from libc.so
Unlike the other syscalls these two symbols were missing from the version script. I noticed this while looking into the compiler-rt runtime libraries for CHERI. Reviewed by: brooks Obtained from: https://github.com/CTSRD-CHERI/cheribsd/pull/1063 MFC after: 3 days
This commit is contained in:
parent
f2c9a8b9d9
commit
395db99f32
1 changed files with 2 additions and 0 deletions
|
|
@ -765,6 +765,8 @@ FBSDprivate_1.0 {
|
|||
__sys_mlock;
|
||||
_mlockall;
|
||||
__sys_mlockall;
|
||||
_mmap;
|
||||
__sys_mmap;
|
||||
_modfind;
|
||||
__sys_modfind;
|
||||
_modfnext;
|
||||
|
|
|
|||
Loading…
Reference in a new issue