Merge "Remove a duplicate declaration, improve check-symbols-glibc.py."

am: 5ac45a2add

* commit '5ac45a2add41fd7c1640815accf09a29bd14aac6':
  Remove a duplicate declaration, improve check-symbols-glibc.py.

Change-Id: I3e2b8574b2b757b8546c69a5985d1af678f0dfdb
This commit is contained in:
Elliott Hughes 2016-05-06 22:52:22 +00:00 committed by android-build-merger
commit 58df16b0b4
2 changed files with 6 additions and 6 deletions

View file

@ -101,9 +101,6 @@ struct hostent *android_gethostbyaddrfornet_proxy(const void *, socklen_t, int ,
int android_getnameinfofornet(const struct sockaddr *, socklen_t, char *, size_t, char *, size_t, int, unsigned, unsigned) __LIBC_HIDDEN__;
FILE* android_open_proxy(void) __LIBC_HIDDEN__;
/* delete the cache associated with a certain network */
extern void _resolv_delete_cache_for_net(unsigned netid);
__END_DECLS
#endif /* _RESOLV_NETID_H */

View file

@ -108,15 +108,16 @@ FORTIFY_stuff = set([
'__strlen_chk',
'__strncpy_chk2',
'__strrchr_chk',
'__umask_chk'
'__umask_chk',
'__write_chk',
])
# Some symbols are used to implement public macros.
# Some symbols are used to implement public functions/macros.
macro_stuff = set([
'__assert2',
'__errno',
'__fe_dfl_env',
'__get_h_errno',
'__gnu_strerror_r',
'__fpclassifyd',
'__isfinite',
'__isfinitef',
@ -132,7 +133,8 @@ macro_stuff = set([
linux_stuff = set([
'getauxval',
'gettid',
'tgkill'
'pthread_gettid_np',
'tgkill',
])
# Some standard stuff isn't yet in the versions of glibc we're using.
std_stuff = set([
@ -168,6 +170,7 @@ weird_stuff = set([
libresolv_stuff = set([
'__res_send_setqhook',
'__res_send_setrhook',
'_resolv_delete_cache_for_net',
'_resolv_flush_cache_for_net',
'_resolv_set_nameservers_for_net',
'dn_expand',