Use C comments since we now preprocess these files with CPP.
This commit is contained in:
parent
8d3b75aa33
commit
5f864214bb
@ -1,12 +1,14 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# 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, ...).
|
||||
#
|
||||
/*
|
||||
* 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 {
|
||||
# PSEUDO syscalls
|
||||
/* PSEUDO syscalls */
|
||||
_exit;
|
||||
|
||||
_setjmp;
|
||||
@ -47,11 +49,13 @@ FBSD_1.0 {
|
||||
vfork;
|
||||
};
|
||||
|
||||
#
|
||||
# FreeBSD private ABI
|
||||
#
|
||||
FBSDprivate {
|
||||
# PSEUDO syscalls
|
||||
/*
|
||||
*
|
||||
* FreeBSD private ABI
|
||||
*
|
||||
*/
|
||||
FBSDprivate_1.0 {
|
||||
/* PSEUDO syscalls */
|
||||
__sys_getlogin;
|
||||
_getlogin;
|
||||
__sys_exit;
|
||||
|
@ -1,12 +1,14 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# 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, ...).
|
||||
#
|
||||
/*
|
||||
* 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 {
|
||||
# PSEUDO syscalls
|
||||
/* PSEUDO syscalls */
|
||||
_exit;
|
||||
|
||||
_setjmp;
|
||||
@ -31,13 +33,13 @@ FBSD_1.0 {
|
||||
__ntohs;
|
||||
vfork;
|
||||
brk;
|
||||
cerror; # XXX - Should this be .cerror (see sys/cerror.S)?
|
||||
cerror; /* XXX - Should this be .cerror (see sys/cerror.S)? */
|
||||
fork;
|
||||
sbrk;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
# PSEUDO syscalls
|
||||
FBSDprivate_1.0 {
|
||||
/* PSEUDO syscalls */
|
||||
__sys_getlogin;
|
||||
_getlogin;
|
||||
__sys_exit;
|
||||
@ -56,7 +58,7 @@ FBSDprivate {
|
||||
__sys_vfork;
|
||||
_vfork;
|
||||
_brk;
|
||||
end; # XXX - Should this be _end (see sys/brk.S)?
|
||||
end; /* XXX - Should this be _end (see sys/brk.S)? */
|
||||
curbrk;
|
||||
minbrk;
|
||||
_brk;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
creat;
|
||||
@ -15,7 +17,7 @@ FBSD_1.0 {
|
||||
sigvec;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
__creat;
|
||||
_creat;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
dbopen;
|
||||
@ -22,7 +24,7 @@ FBSD_1.0 {
|
||||
mpool_stat;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
__bt_open;
|
||||
__dbpanic;
|
||||
__hash_open;
|
||||
|
@ -1,8 +1,12 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
# Standard functions from contrib/gdtoa
|
||||
# (dtoa is renamed to __dtoa and not exported)
|
||||
/*
|
||||
* Standard functions from contrib/gdtoa
|
||||
* (dtoa is renamed to __dtoa and not exported)
|
||||
*/
|
||||
freedtoa;
|
||||
g_Qfmt;
|
||||
g_ddfmt;
|
||||
@ -34,6 +38,6 @@ FBSD_1.0 {
|
||||
strtorx;
|
||||
strtorxL;
|
||||
|
||||
# FreeBSD additions
|
||||
/* FreeBSD additions */
|
||||
strtold;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
__xuname;
|
||||
@ -166,8 +168,10 @@ FBSD_1.0 {
|
||||
getgrnam;
|
||||
getgrgid;
|
||||
getgrent;
|
||||
# Why are __gr_parse_entry() and __gr_match_entry() not static in
|
||||
# gen/getgrent.c?
|
||||
/*
|
||||
* Why are __gr_parse_entry() and __gr_match_entry() not static in
|
||||
* gen/getgrent.c?
|
||||
*/
|
||||
getgrouplist;
|
||||
gethostname;
|
||||
getloadavg;
|
||||
@ -309,10 +313,13 @@ FBSD_1.0 {
|
||||
cfmakeraw;
|
||||
tcsendbreak;
|
||||
_init_tls;
|
||||
#if defined(i386)
|
||||
___tls_get_addr;
|
||||
#endif
|
||||
__tls_get_addr;
|
||||
tcdrain;
|
||||
tcflush;
|
||||
tcflow;
|
||||
__tls_get_addr;
|
||||
ualarm;
|
||||
ulimit;
|
||||
uname;
|
||||
@ -332,8 +339,8 @@ FBSD_1.0 {
|
||||
wordfree;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
# needed by thread libraries
|
||||
FBSDprivate_1.0 {
|
||||
/* needed by thread libraries */
|
||||
__thr_jtable;
|
||||
|
||||
_pthread_atfork;
|
||||
@ -398,22 +405,22 @@ FBSDprivate {
|
||||
_spinlock;
|
||||
_spinlock_debug;
|
||||
_spinunlock;
|
||||
_rtld_error; # for private use
|
||||
_rtld_thread_init; # for private use
|
||||
_rtld_error; /* for private use */
|
||||
_rtld_thread_init; /* for private use */
|
||||
_err;
|
||||
_warn;
|
||||
__fmtcheck;
|
||||
# __pw_match_entry;
|
||||
# __pw_parse_entry;
|
||||
__fdnlist; # used by libkvm
|
||||
# __aout_fdnlist;
|
||||
# __elf_is_okay__;
|
||||
# __elf_fdnlist;
|
||||
/* __pw_match_entry; */
|
||||
/* __pw_parse_entry; */
|
||||
__fdnlist; /* used by libkvm */
|
||||
/* __aout_fdnlist; */
|
||||
/* __elf_is_okay__; */
|
||||
/* __elf_fdnlist; */
|
||||
__opendir2;
|
||||
__pause;
|
||||
_pause;
|
||||
__pselect;
|
||||
__pw_scan; # Used by (at least) libutil
|
||||
__pw_scan; /* Used by (at least) libutil */
|
||||
__raise;
|
||||
_raise;
|
||||
__sem_init;
|
||||
@ -430,6 +437,10 @@ FBSDprivate {
|
||||
_sleep;
|
||||
_rtld_allocate_tls;
|
||||
_rtld_free_tls;
|
||||
#if defined(i386)
|
||||
___libc_tls_get_addr; /* x86 only */
|
||||
#endif
|
||||
__libc_tls_get_addr;
|
||||
__tcdrain;
|
||||
_tcdrain;
|
||||
__usleep;
|
||||
|
@ -1,13 +1,15 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
.mcount;
|
||||
_mcleanup;
|
||||
monstartup;
|
||||
moncontrol;
|
||||
mexitcount;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
.mcount; # ???
|
||||
FBSDprivate_1.0 {
|
||||
_gmonparam;
|
||||
_mcleanup;
|
||||
};
|
||||
|
@ -1,12 +1,14 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# 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, ...).
|
||||
#
|
||||
/*
|
||||
* 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 {
|
||||
# PSEUDO syscalls
|
||||
/* PSEUDO syscalls */
|
||||
_exit;
|
||||
|
||||
_setjmp;
|
||||
@ -49,8 +51,8 @@ FBSD_1.0 {
|
||||
___tls_get_addr;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
# PSEUDO syscalls
|
||||
FBSDprivate_1.0 {
|
||||
/* PSEUDO syscalls */
|
||||
__sys_getlogin;
|
||||
_getlogin;
|
||||
__sys_exit;
|
||||
|
@ -1,12 +1,14 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# 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, ...).
|
||||
#
|
||||
/*
|
||||
* 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 {
|
||||
# PSEUDO syscalls
|
||||
/* PSEUDO syscalls */
|
||||
_exit;
|
||||
|
||||
mcount;
|
||||
@ -41,8 +43,8 @@ FBSD_1.0 {
|
||||
sbrk;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
# PSEUDO syscalls
|
||||
FBSDprivate_1.0 {
|
||||
/* PSEUDO syscalls */
|
||||
__sys_getlogin;
|
||||
_getlogin;
|
||||
__sys_exit;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
__inet_addr;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
btowc;
|
||||
@ -94,7 +96,7 @@ FBSD_1.0 {
|
||||
wcwidth;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
_PathLocale;
|
||||
__detect_path_locale;
|
||||
__collate_load_error;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
__ns_makecanon;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
__b64_ntop;
|
||||
@ -122,12 +124,12 @@ FBSD_1.0 {
|
||||
in6addr_linklocal_allnodes;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
_nsdispatch;
|
||||
_nsyyerror; # generated from nslexer.l
|
||||
_nsyylex; # generated from nslexer.l
|
||||
_nsyyparse; # generated from nsparser.y
|
||||
_nsyylineno; # generated from nsparser.y
|
||||
_nsyyerror; /* generated from nslexer.l */
|
||||
_nsyylex; /* generated from nslexer.l */
|
||||
_nsyyparse; /* generated from nsparser.y */
|
||||
_nsyylineno; /* generated from nsparser.y */
|
||||
__dns_getanswer;
|
||||
__ivaliduser;
|
||||
__ivaliduser_af;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
catopen;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
acl_calc_mask;
|
||||
|
@ -1,12 +1,14 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# 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, ...).
|
||||
#
|
||||
/*
|
||||
* 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 {
|
||||
# PSEUDO syscalls
|
||||
/* PSEUDO syscalls */
|
||||
_exit;
|
||||
|
||||
_setjmp;
|
||||
@ -40,8 +42,8 @@ FBSD_1.0 {
|
||||
sbrk;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
# PSEUDO syscalls
|
||||
FBSDprivate_1.0 {
|
||||
/* PSEUDO syscalls */
|
||||
__sys_getlogin;
|
||||
_getlogin;
|
||||
__sys_exit;
|
||||
|
@ -1,34 +1,38 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
};
|
||||
|
||||
# XXX - Do these really need to be exported???
|
||||
FBSDprivate {
|
||||
#__adddi3;
|
||||
#__anddi3;
|
||||
#__ashldi3;
|
||||
#__ashrdi3;
|
||||
#__cmpdi2;
|
||||
#__divdi3;
|
||||
#__fixdfdi;
|
||||
#__fixsfdi;
|
||||
#__fixunsdfdi;
|
||||
#__fixunssfdi;
|
||||
#__floatdidf;
|
||||
#__floatdisf;
|
||||
#__floatunsdidf;
|
||||
#__iordi3;
|
||||
#__lshldi3;
|
||||
#__lshrdi3;
|
||||
#__moddi3;
|
||||
#__muldi3;
|
||||
#__negdi2;
|
||||
#__one_cmpldi2;
|
||||
#__qdivrem;
|
||||
#__subdi3;
|
||||
#__ucmpdi2;
|
||||
#__udivdi3;
|
||||
#__umoddi3;
|
||||
#__xordi3;
|
||||
/* XXX - Do these really need to be exported??? */
|
||||
FBSDprivate_1.0 {
|
||||
#if 0
|
||||
__adddi3;
|
||||
__anddi3;
|
||||
__ashldi3;
|
||||
__ashrdi3;
|
||||
__cmpdi2;
|
||||
__divdi3;
|
||||
__fixdfdi;
|
||||
__fixsfdi;
|
||||
__fixunsdfdi;
|
||||
__fixunssfdi;
|
||||
__floatdidf;
|
||||
__floatdisf;
|
||||
__floatunsdidf;
|
||||
__iordi3;
|
||||
__lshldi3;
|
||||
__lshrdi3;
|
||||
__moddi3;
|
||||
__muldi3;
|
||||
__negdi2;
|
||||
__one_cmpldi2;
|
||||
__qdivrem;
|
||||
__subdi3;
|
||||
__ucmpdi2;
|
||||
__udivdi3;
|
||||
__umoddi3;
|
||||
__xordi3;
|
||||
#endif
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
regcomp;
|
||||
|
@ -1,7 +1,9 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
#h_nerr; # Why is this not staticized in net/herror.c?
|
||||
/* h_nerr; */ /* Why is this not staticized in net/herror.c? */
|
||||
h_errlist;
|
||||
herror;
|
||||
hstrerror;
|
||||
@ -66,8 +68,6 @@ FBSD_1.0 {
|
||||
__res_mkupdrec;
|
||||
__res_mkupdate;
|
||||
__res_opt;
|
||||
#__res_get_nibblesuffix; # Excluded
|
||||
#__res_get_nibblesuffix2; # Excluded
|
||||
__res_getservers;
|
||||
__res_hostalias;
|
||||
__res_nametoclass;
|
||||
|
@ -1,16 +1,18 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
# From crypt_clnt.c (generated by rpcgen - include/rpcsvc/crypt.x)
|
||||
/* From crypt_clnt.c (generated by rpcgen - include/rpcsvc/crypt.x) */
|
||||
des_crypt_1;
|
||||
|
||||
# From crypt_xdr.c (generated by rpcgen - include/rpcsvc/crypt.x)
|
||||
/* From crypt_xdr.c (generated by rpcgen - include/rpcsvc/crypt.x) */
|
||||
xdr_des_dir;
|
||||
xdr_des_mode;
|
||||
xdr_desargs;
|
||||
xdr_desresp;
|
||||
|
||||
# From yp_xdr.c (generated by rpcgen - include/rpcsvc/yp.x)
|
||||
/* From yp_xdr.c (generated by rpcgen - include/rpcsvc/yp.x) */
|
||||
xdr_domainname;
|
||||
xdr_keydat;
|
||||
xdr_mapname;
|
||||
@ -233,12 +235,14 @@ FBSD_1.0 {
|
||||
__rpc_get_local_uid;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
__des_crypt_LOCAL;
|
||||
__key_encryptsession_pk_LOCAL;
|
||||
__key_decryptsession_pk_LOCAL;
|
||||
__key_gendes_LOCAL;
|
||||
__tsd_lock; # Why does usr.bin/rpcinfo/Makefile need rpc_generic.c?
|
||||
# Remove this hack if rpcinfo stops building with it.
|
||||
__tsd_lock; /*
|
||||
* Why does usr.bin/rpcinfo/Makefile need rpc_generic.c?
|
||||
* Remove this hack if rpcinfo stops building with it.
|
||||
*/
|
||||
__svc_clean_idle;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
_fpgetmask;
|
||||
@ -15,7 +17,7 @@ FBSD_1.0 {
|
||||
fpsetsticky;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
_softfloat_float_exception_flags;
|
||||
_softfloat_float_exception_mask;
|
||||
_softfloat_float_rounding_mode;
|
||||
|
@ -1,12 +1,14 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# 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, ...).
|
||||
#
|
||||
/*
|
||||
* 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 {
|
||||
# PSEUDO syscalls
|
||||
/* PSEUDO syscalls */
|
||||
_exit;
|
||||
|
||||
_setjmp;
|
||||
@ -39,7 +41,7 @@ FBSD_1.0 {
|
||||
sbrk;
|
||||
vfork;
|
||||
|
||||
# SCD libc 64 psABI
|
||||
/* SCD libc 64 psABI */
|
||||
_Qp_sqrt;
|
||||
_Qp_add;
|
||||
_Qp_div;
|
||||
@ -69,8 +71,8 @@ FBSD_1.0 {
|
||||
__sparc_utrap_install;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
# PSEUDO syscalls
|
||||
FBSDprivate_1.0 {
|
||||
/* PSEUDO syscalls */
|
||||
__sys_getlogin;
|
||||
_getlogin;
|
||||
__sys_exit;
|
||||
@ -95,6 +97,6 @@ FBSDprivate {
|
||||
__sys_vfork;
|
||||
_vfork;
|
||||
|
||||
# used in src/lib/csu/sparc64/crt1.c
|
||||
/* used in src/lib/csu/sparc64/crt1.c */
|
||||
__sparc_utrap_setup;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
flockfile;
|
||||
@ -24,7 +26,7 @@ FBSD_1.0 {
|
||||
__stdinp;
|
||||
__stdoutp;
|
||||
__stderrp;
|
||||
f_prealloc; # deprecated???
|
||||
f_prealloc; /* deprecated??? */
|
||||
fopen;
|
||||
fprintf;
|
||||
fpurge;
|
||||
@ -135,7 +137,7 @@ FBSD_1.0 {
|
||||
__printf_render_vis;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
_flockfile;
|
||||
_flockfile_debug_stub;
|
||||
_flockfile_debug;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
_Exit;
|
||||
@ -91,7 +93,7 @@ FBSD_1.0 {
|
||||
twalk;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
__use_pts;
|
||||
_malloc_prefork;
|
||||
_malloc_postfork;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
_time32_to_time;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
bcmp;
|
||||
@ -75,6 +77,6 @@ FBSD_1.0 {
|
||||
wmemset;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
__strtok_r;
|
||||
};
|
||||
|
@ -1,9 +1,12 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
# It'd be nice to have this automatically generated, but we don't
|
||||
# know to what version they will eventually belong, so for now
|
||||
# it has to be manual.
|
||||
#
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
/*
|
||||
* It'd be nice to have this automatically generated, but we don't
|
||||
* know to what version they will eventually belong, so for now
|
||||
* it has to be manual.
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
__acl_aclcheck_fd;
|
||||
__acl_aclcheck_file;
|
||||
@ -139,8 +142,8 @@ FBSD_1.0 {
|
||||
kldunload;
|
||||
kldunloadf;
|
||||
kqueue;
|
||||
kmq_notify; # Do we want these to be publc interfaces?
|
||||
kmq_open; # librt uses them to provide mq_xxx.
|
||||
kmq_notify; /* Do we want these to be publc interfaces? */
|
||||
kmq_open; /* librt uses them to provide mq_xxx. */
|
||||
kmq_setattr;
|
||||
kmq_timedreceive;
|
||||
kmq_timedsend;
|
||||
@ -301,8 +304,8 @@ FBSD_1.0 {
|
||||
thr_set_name;
|
||||
thr_suspend;
|
||||
thr_wake;
|
||||
ktimer_create; # Do we want these to be publc interfaces?
|
||||
ktimer_delete; # librt uses them to provide timer_xxx.
|
||||
ktimer_create; /* Do we want these to be publc interfaces? */
|
||||
ktimer_delete; /* librt uses them to provide timer_xxx. */
|
||||
ktimer_getoverrun;
|
||||
ktimer_gettime;
|
||||
ktimer_settime;
|
||||
@ -327,7 +330,7 @@ FBSD_1.0 {
|
||||
truncate;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
FBSDprivate_1.0 {
|
||||
___acl_aclcheck_fd;
|
||||
__sys___acl_aclcheck_fd;
|
||||
___acl_aclcheck_file;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
uuid_to_string;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
xdr_free;
|
||||
@ -40,6 +42,6 @@ FBSD_1.0 {
|
||||
xdrrec_endofrecord;
|
||||
xdr_reference;
|
||||
xdr_pointer;
|
||||
#xdr_sizeof; # Why is xdr_sizeof.c not included in Makefileinc?
|
||||
/* xdr_sizeof; */ /* Why is xdr_sizeof.c not included in Makefileinc? */
|
||||
xdrstdio_create;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
xdr_datum;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
global:
|
||||
elf32_checksum;
|
||||
@ -90,10 +90,10 @@ local:
|
||||
*;
|
||||
};
|
||||
|
||||
#
|
||||
# Private symbols, mostly test hooks
|
||||
#
|
||||
FBSDprivate {
|
||||
/*
|
||||
* Private symbols, mostly test hooks
|
||||
*/
|
||||
FBSDprivate_1.0 {
|
||||
global:
|
||||
_libelf_set_error;
|
||||
_libelf_get_max_error;
|
||||
|
@ -1,14 +1,15 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#
|
||||
# Hack. libpthread had versioning before libc, but we need to
|
||||
# reside in the same namespace as libc if we want to override
|
||||
# libc functions. Use this so we don't break older applications
|
||||
# that require symbols from "LIBTHREAD_1_0".
|
||||
#
|
||||
# From now on, use the same naming scheme as libc.
|
||||
#
|
||||
#
|
||||
/*
|
||||
* Hack. libpthread had versioning before libc, but we need to
|
||||
* reside in the same namespace as libc if we want to override
|
||||
* libc functions. Use this so we don't break older applications
|
||||
* that require symbols from "LIBTHREAD_1_0".
|
||||
*
|
||||
* From now on, use the same naming scheme as libc.
|
||||
*/
|
||||
LIBTHREAD_1_0 {
|
||||
global:
|
||||
___creat;
|
||||
@ -341,7 +342,7 @@ global:
|
||||
write;
|
||||
writev;
|
||||
|
||||
# Debugger needs these.
|
||||
/* Debugger needs these. */
|
||||
_libkse_debug;
|
||||
_thread_activated;
|
||||
_thread_active_threads;
|
||||
@ -369,9 +370,9 @@ local:
|
||||
*;
|
||||
};
|
||||
|
||||
#
|
||||
# Use the same naming scheme as libc.
|
||||
#
|
||||
/*
|
||||
* Use the same naming scheme as libc.
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
global:
|
||||
__error;
|
||||
@ -531,11 +532,11 @@ local:
|
||||
*;
|
||||
};
|
||||
|
||||
#
|
||||
# List the private interfaces reserved for use in FreeBSD libraries.
|
||||
# These are not part of our application ABI.
|
||||
#
|
||||
FBSDprivate {
|
||||
/*
|
||||
* List the private interfaces reserved for use in FreeBSD libraries.
|
||||
* These are not part of our application ABI.
|
||||
*/
|
||||
FBSDprivate_1.0 {
|
||||
global:
|
||||
___creat;
|
||||
__accept;
|
||||
@ -706,7 +707,7 @@ global:
|
||||
_wait;
|
||||
_waitpid;
|
||||
|
||||
# Debugger needs these.
|
||||
/* Debugger needs these. */
|
||||
_libkse_debug;
|
||||
_thread_activated;
|
||||
_thread_active_threads;
|
||||
|
@ -1,4 +1,7 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
LIBTHREAD_1_0 {
|
||||
global:
|
||||
___creat;
|
||||
@ -343,7 +346,7 @@ global:
|
||||
write;
|
||||
writev;
|
||||
|
||||
# Debugger needs these.
|
||||
/* Debugger needs these. */
|
||||
_libthr_debug;
|
||||
_thread_active_threads;
|
||||
_thread_bp_create;
|
||||
@ -373,9 +376,9 @@ local:
|
||||
*;
|
||||
};
|
||||
|
||||
#
|
||||
# Use the same naming scheme as libc.
|
||||
#
|
||||
/*
|
||||
* Use the same naming scheme as libc.
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
global:
|
||||
__error;
|
||||
@ -547,11 +550,11 @@ local:
|
||||
*;
|
||||
};
|
||||
|
||||
#
|
||||
# List the private interfaces reserved for use in FreeBSD libraries.
|
||||
# These are not part of our application ABI.
|
||||
#
|
||||
FBSDprivate {
|
||||
/*
|
||||
* List the private interfaces reserved for use in FreeBSD libraries.
|
||||
* These are not part of our application ABI.
|
||||
*/
|
||||
FBSDprivate_1.0 {
|
||||
global:
|
||||
___creat;
|
||||
___pause;
|
||||
@ -730,7 +733,7 @@ global:
|
||||
_spinunlock;
|
||||
_vfork;
|
||||
|
||||
# Debugger needs these.
|
||||
/* Debugger needs these. */
|
||||
_libthr_debug;
|
||||
_thread_active_threads;
|
||||
_thread_bp_create;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
td_init;
|
||||
@ -20,12 +22,14 @@ FBSD_1.0 {
|
||||
td_thr_get_info;
|
||||
td_thr_getfpregs;
|
||||
td_thr_getgregs;
|
||||
td_thr_getxmmregs; # x86 only
|
||||
#if defined(i386)
|
||||
td_thr_getxmmregs;
|
||||
td_thr_setxmmregs;
|
||||
#endif
|
||||
td_thr_set_event;
|
||||
td_thr_setfpregs;
|
||||
td_thr_setgregs;
|
||||
td_thr_setxmmregs; # x86 only
|
||||
td_thr_sstep; # FreeBSD extension to GDB<->thread interface
|
||||
td_thr_sstep; /* FreeBSD extension to GDB<->thread interface */
|
||||
td_thr_tls_get_addr;
|
||||
td_thr_validate;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
__fe_dfl_env;
|
||||
tgamma;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
fesetexceptflag;
|
||||
feraiseexcept;
|
||||
|
@ -1,3 +1,5 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
__has_sse;
|
||||
__test_sse;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
feupdateenv;
|
||||
};
|
||||
|
@ -1,3 +1,5 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
};
|
||||
|
@ -1,3 +1,5 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
FBSD_1.0 {
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
_rtld_error;
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $FreeBSD$
|
||||
/*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
FBSD_1.0 {
|
||||
___tls_get_addr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user