Merge "Call fmtmsg/getdate/getdate_err useless."
This commit is contained in:
commit
0fe734817f
2 changed files with 5 additions and 4 deletions
|
@ -72,9 +72,6 @@ aio_return
|
||||||
aio_suspend
|
aio_suspend
|
||||||
aio_write
|
aio_write
|
||||||
fexecve
|
fexecve
|
||||||
fmtmsg
|
|
||||||
getdate
|
|
||||||
getdate_err
|
|
||||||
lio_listio
|
lio_listio
|
||||||
pthread_attr_getinheritsched
|
pthread_attr_getinheritsched
|
||||||
pthread_attr_setinheritsched
|
pthread_attr_setinheritsched
|
||||||
|
|
|
@ -184,13 +184,17 @@ known = set([
|
||||||
])
|
])
|
||||||
# POSIX has some stuff that's too stupid for words (a64l) or not actually
|
# POSIX has some stuff that's too stupid for words (a64l) or not actually
|
||||||
# implemented in glibc unless you count always failing with ENOSYS as
|
# implemented in glibc unless you count always failing with ENOSYS as
|
||||||
# being implemented (fattach).
|
# being implemented (fattach). Other stuff (fmtmsg) isn't used in any
|
||||||
|
# codebase I have access to, internal or external.
|
||||||
in_posix_and_glibc_but_dead_or_useless = set([
|
in_posix_and_glibc_but_dead_or_useless = set([
|
||||||
'a64l', # obsolete
|
'a64l', # obsolete
|
||||||
'confstr', # obsolete
|
'confstr', # obsolete
|
||||||
'endutxent', # no utmp on Android
|
'endutxent', # no utmp on Android
|
||||||
'fattach', # obsolete
|
'fattach', # obsolete
|
||||||
'fdetach', # obsolete
|
'fdetach', # obsolete
|
||||||
|
'fmtmsg', # unused
|
||||||
|
'getdate', # unused
|
||||||
|
'getdate_err', # unused
|
||||||
'gethostid', # obsolete
|
'gethostid', # obsolete
|
||||||
'getmsg', # obsolete
|
'getmsg', # obsolete
|
||||||
'getpmsg', # obsolete
|
'getpmsg', # obsolete
|
||||||
|
|
Loading…
Reference in a new issue