Browse Source

Move 'services' routines from 'inet' into 'nss'

The getservby* and getservent* routines are entry points for nss
functionality.  This commit moves them from the 'inet' subdirectory to
'nss'.
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
azanella/bz30944-memcpy-zen
Arjun Shankar 3 years ago
parent
commit
1d74d2f042
  1. 8
      inet/Makefile
  2. 6
      inet/Versions
  3. 15
      nss/Makefile
  4. 3
      nss/Versions
  5. 0
      nss/getservent.c
  6. 0
      nss/getservent_r.c
  7. 0
      nss/getsrvbynm.c
  8. 0
      nss/getsrvbynm_r.c
  9. 0
      nss/getsrvbypt.c
  10. 0
      nss/getsrvbypt_r.c

8
inet/Makefile

@ -48,13 +48,7 @@ routines := \
ether_ntoa_r \
getipv4sourcefilter \
getnameinfo \
getservent \
getservent_r \
getsourcefilter \
getsrvbynm \
getsrvbynm_r \
getsrvbypt \
getsrvbypt_r \
herrno \
herrno-loc \
htonl \
@ -126,8 +120,6 @@ include ../gen-locales.mk
ifeq ($(have-thread-library),yes)
CFLAGS-rcmd.c += -fexceptions
CFLAGS-getservent_r.c += -fexceptions
CFLAGS-getservent.c += -fexceptions
CFLAGS-either_ntoh.c += -fexceptions
CFLAGS-either_hton.c += -fexceptions
CFLAGS-in6_addr.c += $(config-cflags-wno-ignored-attributes)

6
inet/Versions

@ -15,8 +15,6 @@ libc {
# g*
getdomainname;
getservbyname; getservbyname_r; getservbyport;
getservbyport_r; getservent; getservent_r;
# h*
htonl; htons;
@ -46,9 +44,7 @@ libc {
# g*
getaliasbyname_r; getaliasent_r; gethostbyaddr_r; gethostbyname2_r;
gethostbyname_r; gethostent_r; getnetbyaddr_r; getnetbyname_r;
getnetent_r; getservbyname_r;
getservbyport_r;
getservent_r;
getnetent_r;
}
GLIBC_2.2 {
# i*

15
nss/Makefile

@ -229,6 +229,21 @@ CFLAGS-getrpcent_r.c += -fexceptions
CFLAGS-getrpcent.c += -fexceptions
endif
# services routines:
routines += \
getservent \
getservent_r \
getsrvbynm \
getsrvbynm_r \
getsrvbypt \
getsrvbypt_r \
# routines
ifeq ($(have-thread-library),yes)
CFLAGS-getservent_r.c += -fexceptions
CFLAGS-getservent.c += -fexceptions
endif
# shadow routines
routines += \
fgetspent \

3
nss/Versions

@ -32,6 +32,8 @@ libc {
getpw; getpwent; getpwent_r; getpwnam; getpwnam_r; getpwuid; getpwuid_r;
getrpcbyname; getrpcbyname_r; getrpcbynumber; getrpcbynumber_r;
getrpcent; getrpcent_r;
getservbyname; getservbyname_r; getservbyport;
getservbyport_r; getservent; getservent_r;
getspent; getspent_r; getspnam; getspnam_r;
# i*
@ -64,6 +66,7 @@ libc {
getnetgrent_r;
getprotobyname_r; getprotobynumber_r; getprotoent_r;
getpwent_r; getpwuid_r; getpwnam_r;
getservbyname_r; getservbyport_r; getservent_r;
getspent_r; getspnam_r;
}
GLIBC_2.2.2 {

0
inet/getservent.c → nss/getservent.c

0
inet/getservent_r.c → nss/getservent_r.c

0
inet/getsrvbynm.c → nss/getsrvbynm.c

0
inet/getsrvbynm_r.c → nss/getsrvbynm_r.c

0
inet/getsrvbypt.c → nss/getsrvbypt.c

0
inet/getsrvbypt_r.c → nss/getsrvbypt_r.c

Loading…
Cancel
Save