Teach our script to ignore more dead POSIX stuff.

Change-Id: Ic29451b7110ac35291125d427e1ae6fd334bdbd5
This commit is contained in:
Elliott Hughes 2016-04-06 13:29:22 -07:00
parent 37b23cbff5
commit 187d37d35a
1 changed files with 17 additions and 0 deletions

View File

@ -178,6 +178,23 @@ known = set([
'_ctype_',
'__libc_init',
])
# 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
# being implemented (fattach).
in_posix_and_glibc_but_actually_dead = set([
'a64l',
'fattach',
'fdetach',
'getmsg',
'getpmsg',
'isastream',
'l64a',
'putmsg',
'putpmsg',
])
posix = posix - in_posix_and_glibc_but_actually_dead
glibc = glibc - in_posix_and_glibc_but_actually_dead
if not only_unwanted:
#print 'glibc:'