mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
These provide standard APIs, but are implemented using another system call (e.g., pipe implemented in terms of pipe2) or are interposed by the threading library to support cancelation. After discussion with kib (see D44111), I've concluded that it is better to keep most public interfaces in libc with as little as possible in libsys. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D44241
32 lines
470 B
Text
32 lines
470 B
Text
/*
|
|
* This only needs to contain symbols that are not listed in
|
|
* symbol maps from other parts of libc (i.e., not found in
|
|
* stdlib/Symbol.map, string/Symbol.map, sys/Symbol.map, ...).
|
|
*/
|
|
FBSD_1.0 {
|
|
.mcount;
|
|
__flt_rounds;
|
|
brk;
|
|
fpgetmask;
|
|
fpgetprec;
|
|
fpgetround;
|
|
fpgetsticky;
|
|
fpsetmask;
|
|
fpsetprec;
|
|
fpsetround;
|
|
sbrk;
|
|
};
|
|
|
|
/*
|
|
*
|
|
* FreeBSD private ABI
|
|
*
|
|
*/
|
|
FBSDprivate_1.0 {
|
|
___longjmp;
|
|
__longjmp;
|
|
__signalcontext;
|
|
signalcontext;
|
|
__siglongjmp;
|
|
_brk;
|
|
};
|