Summary Report for OLVER Test Run

on Host tester under OS "ROSA Linux 2012.0" at Time 2013_01_18 18:07:25

Scenarios Problems Functions Requirements
Passed246
Failed29
 

Total275
Known40
New9
Internal2

Total51
Tested1286
Not tested246
 

Total1532
Passed6942
Failed70
Checked7012

Total18238

Problems

Known

ScenarioBug IdDescriptionFailures
math_cexp_scenariobug516_2(cexp)The cexp() family of functions function shall compute the complex exponent of their argument. At the specified point the result of computing the exponent is very imprecise (inaccuracy is more then 20 bits from the end of the floating point number). failure 2 | 11 more...
math_cexp_scenariobug516_2(cpow)The cpow(x, y) family of functions shall compute the complex power function x^y, with a branch cut for the first parameter along the negative real axis. If the argument is x = (-1) + (-0) * i and y = (-1) + (-0) * i then the function cpow(x, y) return (-1) + (near)(1e-16) * i. This result is too far from (-1). If the argument is x = (-1) + (0) * i and y = (-1) + (0) * i then the function cpow(x, y) return (-1) - (near)(1e-16) * i. This result is too far from (-1). If the argument is x = (-1) + (-0) * i and y = (-1) + (-0) * i then the function cpowl(x, y) return (-1) + (near)(1e-20) * i. This result is too far from (-1). If the argument is x = (-1) + (0) * i and y = (-1) + (0) * i then the function cpowl(x, y) return (-1) + (near)(1e-20) * i. This result is too far from (-1). failure 14 | 3 more...
math_complex_scenariobug841(cproj)According to LSB, the cproj(z) family of functions shall compute a projection of z onto Riemann sphere: z projects to z except all complex infinities. The old implementation in glibc does a stereographic projection that contradicts the standard. failure 18 | 5 more...
math_rand_scenariobug511_1(initstate)The initstate() function handles restarting of random-number generator. One of the argument to initstate() function is size of the state array. The larger the state array, the more random the numbers. According to LSB, values for the amount of state information are 8, 32, 64, 128, and 256 bytes and if initstate() is called with size less than 8, it shall return NULL. But on the target machine the function doesn't return NULL when called with size less than 8. failure 24 | 2 more...
math_rand_scenariobug511_2(initstate)The initstate() function handles restarting of random-number generator. According to LSB, upon successful completion, initstate() shall return a pointer to the previous state array; otherwise, a null pointer shall be returned. But on the target machine the function returns neither a pointer to the previous state, nor NULL pointer. failure 25 | 2 more...
math_real_fdim_overflow_scenariobug512(fdim)The fdim(x, y) family of functions shall determine the positive difference between their arguments. According to LSB, if the result overflows then fdim() shall fail and shall set ERANGE error code. But on the target machine, the functions set error code EOK instead of ERANGE when overflow occurs. failure 30 | 2 more...
ncurses_misc_scenariobug357(keyname)The keyname() function generates a character string whose value describes the key specified as the argument of the functions. The meta-character notation in function keyname() from ncurses library, when running it with meta-character parameter, shall be used only if meta-characters are enabled (according to the LSB standard). But it is used irrespectively of enabling of meta-characters. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0357. failure 33 | 127 more...
ncurses_move_scenariobug313(mvcur)According to LSB, if screen position (newrow, newcol) is not a valid address for the terminal in use, mvcur(int xpos, int ypos) function call to this cursor position should fail (mvcur() is the function from Ncurses library that moves the cursor), but error doesn't occur on inputs (-1000000, -1000000), (10000000, 10000000). Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0313. failure 161 | 1 more...
ncurses_slk_label_scenariobug342(slk_label)Upon successful completion, slk_label(labnum) function from ncurses library returns the requested label with number labnum with leading and trailing blanks stripped. But on the target machine there are outputs with unstripped blanks. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0342. failure 163
ncurses_string_scanf_scenariobug524_1(scanw)According to the standard, upon successful completion, scanw() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). But on the target machine, the function scanw() returned 1 when it is called with first argument " %i". Bug was added to linuxtesting.ru as bug number S0524. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0524. failure 164 | 5 more...
ncurses_string_scanf_scenariobug524_2(vw_scanw)According to the standard, upon successful completion, vw_scanw() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). But on the target machine, the function vw_scanw() returned 1 when it is called with first argument " %i". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0524. failure 188 | 5 more...
ncurses_string_scanf_scenariobug524_3(vwscanw)According to the standard, upon successful completion, vwscanw() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). But on the target machine, the function vwscanw() returned 1 when it is called with first argument " %i". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0524. failure 194 | 5 more...
ncurses_string_scanf_scenariobug524_4(mvwscanw)According to the standard, upon successful completion, mvwscanw() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). But on the target machine, the function mvwscanw() returned 1 when it is called with fmt argument " %i". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0524. failure 182 | 5 more...
ncurses_string_scanf_scenariobug524_5(mvscanw)According to the standard, upon successful completion, mvscanw() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). But on the target machine, the function mvscanw() returned 1 when it is called with fmt argument " %i". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0524. failure 170 | 5 more...
ncurses_string_scanf_scenariobug524_6(wscanw)According to the standard, upon successful completion, wscanw() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). But on the target machine, the function wscanw() returned 1 when it is called with fmt argument " %i". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0524. failure 176 | 5 more...
ncurses_terminal_termcap_simple_scenariobug686(tgetnum)According to the standard, upon successful completion, tgetnum() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). RETURN VALUE ... Upon successful completion, functions that return an integer return OK. Otherwise, they return ERR. But the real implementation does not match LSB standard. Manual pages for GNU extension, that is used in real Linux systems, say: The tgetnum routine gets the numeric entry for id, or -1 if it is not available. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0686. failure 200
ncurses_terminal_termcap_simple_scenariobug687(tgetflag)According to the standard, upon successful completion, tgetflag() function from Ncurses library shall return OK(0), otherwise, it shall return ERR(-1). RETURN VALUE ... Upon successful completion, functions that return an integer return OK. Otherwise, they return ERR. But the real implementation does not match LSB standard. Manual pages for GNU extension, that is used in real Linux systems, say: The tgetflag routine gets the boolean entry for id, or zero if it is not available. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0687. failure 201
process_meta_user_scenariobug102(setuid)The setuid() function sets the real user ID, effective user ID, and the saved set-user-ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real user ID or the saved set-user-ID, setuid() shall set the effective user ID to this value. But on the target machine setuid() fails when trying to set the effective user ID to the saved set-user-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 225 | 1 more...
process_meta_user_scenariobug103(setreuid)The setreuid() function shall set the real and effective user IDs of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the saved set-user-ID, setreuid() shall always be successful to set the real user ID to this value. But on the target machine setreuid() fails when trying to set the real user ID to the saved set-user-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 223 | 1 more...
process_meta_user_scenariobug104(setgid)The setgid() function sets the real group ID, effective group ID, and the saved set-group-ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real group ID or the saved set-group-ID, setgid() shall set the effective group ID to this value. But on the target machine setgid() fails when trying to set the effective group ID to the saved set-group-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 207 | 1 more...
process_meta_user_scenariobug106(setregid)The setregid() function shall set the real and effective group IDs of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the saved set-group-ID, setregid() shall always be successful to set the real group ID to this value. But on the target machine setregid() fails when trying to set the real group ID to the saved set-group-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 209 | 13 more...
process_meta_user_scenariobug82(seteuid)The seteuid() function sets the effective user ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real user ID or the saved set-user-ID, or if the process has appropriate privileges, seteuid() shall set the effective user ID to this value. But on the target machine seteuid() fails when trying to set effective user ID to the saved set-user-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 205 | 1 more...
process_meta_user_scenariobug83(setegid)The setegid() function sets the effective group ID of the calling process to the value, specified as its argument. According to LSB, if this argument equals to the real group ID or the saved set-group-ID, or if the process has appropriate privileges, setegid() shall set the effective group ID to this value. But on the target machine setegid() fails when trying to set effective group ID to the saved set-group-ID value. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0102. failure 203 | 1 more...
process_resources_ulimit_priviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 228
process_resources_ulimit_unpriviledged_scenariobug794(ulimit)It is a test suite deficiency that will be fixed soon. failure 229
process_scheduler_scenariobug504(sched_setscheduler)The sched_setscheduler() function shall set the scheduling policy and scheduling parameters of the specified process. According to LSB, upon successful completion, the function shall return the former scheduling policy of the specified process. But it always returns 0 on the target machine. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0504. failure 230 | 15 more...
signal_sigstr_basic_scenariobug685(strsignal)If sig is not a valid signal number, strsignal shall return either a pointer either a pointer to the string "unknown signal", or a null pointer. SYNOPSIS ... char * strsignal(int sig); ... RETURN VALUE If sig is a valid signal number, strsignal() shall return a pointer to the appropriate description string. Otherwise, strsignal() shall return either a pointer to the string "unknown signal", or a null pointer. ... But in real, strsignal return "Unknown signal", a space, and a number sig. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0685. failure 246
time_conversion_scenariobug379(asctime_r)The asctime_r() function converts date and time to a string and returns it. According to LSB, if the function is unsuccessful, it should return NULL, But on the target machine it returns a string with '?' symbols, for example "??? Oct 9 09:09:09 1909". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0379. failure 248 | 1 more...
time_conversion_scenariobug380(asctime)The asctime() function converts date and time to a string and returns it. According to LSB, if the function is unsuccessful, it should return NULL, But on the target machine it returns a string with '?' symbols, for example "??? Oct 9 09:09:09 1909". Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0379. failure 247
time_time_scenariobug377(stime)The stime() function shall set the system's idea of the time and date to the time referenced by function argument. According to LSB, if this argument is NULL then stime() shall set error code to EINVAL. But it sets error code to EFAULT instead of EINVAL. The bug was fixed in libc 2.4. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0377. failure 272 | 8 more...
util_assert_errx_scenariobug488(errx)The errx() function shall display a formatted error message on the standard error stream. According to LSB, the formatted error message, the last component of the program name, a colon character, a space and a newline character shall be output. But on the target machine colon character, and a space are not output after the formatted error message. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0488. failure 281 | 8 more...
util_assert_verrx_scenariobug489(verrx)The verrx() function shall display a formatted error message on the standard error stream. According to LSB, the formatted error message, the last component of the program name, a colon character, a space and a newline character shall be output. But on the target machine colon character, and a space are not output after the formatted error message. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0488. failure 290 | 8 more...
util_assert_warnx_scenariobug486(warnx)The warnx() function shall display a formatted error message on the standard error stream. According to LSB, the formatted error message, the last component of the program name, a colon character, a space and a newline character shall be output. But on the target machine colon character, and a space are not output after the formatted error message. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0488. failure 299 | 199 more...
util_compress_scenariobug844(gzputc)According to LSB, the gzputc() function shall write the single character c, converted from integer to unsigned character. On success, gzputc() shall return the value written, but it returns initial argument. failure 499
util_format_time_scenariobug803(getdate)The requirement claims: "Extra whitespace in either the template file or in string shall be ignored." But if there are any white spaces at the end of the query, the function returns with error 7. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0803. failure 502
util_format_time_scenariobug808(strptime)Values of all fields of struct tm shall be positive or 0. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0808. failure 505
util_format_time_scenariobug810(strptime)The char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm); function shall convert the character string pointed to by buf to values which are stored in the tm structure pointed to by tm, using the format specified by format. The <time.h> header shall declare the structure tm, which shall include at least the following members: int tm_sec Seconds [0,60]. int tm_min Minutes [0,59]. int tm_hour Hour [0,23]. int tm_mday Day of month [1,31]. int tm_mon Month of year [0,11]. int tm_year Years since 1900. int tm_wday Day of week [0,6] (Sunday =0). int tm_yday Day of year [0,365]. int tm_isdst Daylight Savings flag. Function strptime can not rigth work with some input data. If buf = "0 Sun 2006" and format = "%U %a %Y" then strptime must find first Sunday in first week (Sunday as the first day of the week) 2006 year. 2006 year begins with Sunday. But after call to strptime tm.tm_yday = -7. if buf = "0 Mon 2007" and format = "%W %a %Y" then strptime must find first Monday in first week (Monday as the first day of the week) 2007 year. 2007 year begins with Monday. But after call to strptime tm.tm_yday = -7. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0810. failure 503 | 1 more...
util_format_wprintf_swprintf_scenariobug505(swprintf)According to LSB, on error swprintf() function shall return -1 and set errno global variable. On the target machine, swprintf() function returns -1, but doesn't set error code in errno global variable. This contradicts LSB standard for this function. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0505. failure 507
util_format_wprintf_vswprintf_scenariobug506(vswprintf)According to LSB, on error vswprintf() function shall return -1 and set errno global variable. On the target machine, vswprintf() function returns -1, but doesn't set error code in errno global variable. This contradicts LSB standard for this function. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0505. failure 508
util_format_wtime_scenariobug561(wcsftime)%z Replaced by the offset from UTC in the ISO 8601:2000 standard format, or by no characters if no timezone is determinable; depending on the field tm_isdst in tm structure. But on the target machine it is detected incorrect processing of this conversion pattern when tm_isdst is set to a positive number - no daylight savings time offset is used. Additional information about this bug may be found at http://linuxtesting.org/results/report?num=S0561. failure 509

New

ScenarioReq IdDescriptionFailures
ncurses_window_refresh_scenariopair_content.09 Requirement failed: {pair_content.09} f and b are from 0 to COLORS-1 failure 202
process_pgroup_scenario__getpgid.04.01 Requirement failed: {__getpgid.04.01} Function executed successfully with EOK error code, while `checkResult == true` means that EPERM SHALL be set failure 227
time_conversion_scenarioctime.01 Requirement failed: {ctime.01} equivalent to asctime(localtime(clock)) failure 250 | 3 more...
time_conversion_scenarioctime_r.01 Requirement failed: {ctime_r.01} equivalent to asctime(localtime(clock)) failure 254 | 7 more...
time_conversion_scenariolocaltime.01 Requirement failed: {localtime.01} The localtime() function shall convert the time in seconds into a local time failure 262 | 3 more...
time_conversion_scenariolocaltime_r.01 Requirement failed: {localtime_r.01} The function shall convert the time in seconds into a local time failure 266 | 3 more...
time_conversion_scenariomktime.02.01 Requirement failed: {mktime.02.01} The mktime() function shall return the specified time since the Epoch failure 270 | 1 more...
util_crypt_scenariocrypt.09 Requirement failed: Unexpected error code returned: [EINVAL] code 0x16 failure 500
util_dl_scenariodlsym.03 Requirement failed: {dlsym.03} correct symbol not found failure 501

Internal

ScenarioKindDescriptionFailures
locale_textdomain_scenariotest failures setlocale_spec(context, SUT_LC_ALL, _CS("Olver_Locale")) != NULL failed failure 1
util_format_time_scenarioextra assertion violation Unable to change current locale. failure 506

Function coverage

_Exitfetestexceptmsyncsigaddsetwmove
_IO_feoffeupdateenvmunlocksigaltstackwordexp
_IO_getcfflushmunlockallsigandsetwordfree
_IO_putcfflush_unlockedmunmapsigdelsetwprintf
_IO_putsffsmvaddchsigemptysetwprintw
__assert_failfgetcmvaddchnstrsigfillsetwrefresh
__ctype_b_locfgetposmvaddchstrsigholdwrite
__ctype_get_mb_cur_maxfgetpos64mvaddnstrsigignorewritev
__ctype_tolower_locfgetsmvaddstrsiginterruptwscanf
__ctype_toupper_locfgetwcmvchgatsigisemptysetwscanw
__cxa_atexitfgetwc_unlockedmvcursigismemberwscrl
__errno_locationfgetwsmvdelchsiglongjmpwsetscrreg
__fpendingfilenomvderwinsignalwstandend
__fxstatfiltermvgetchsigorsetwstandout
__fxstat64flashmvgetnstrsigpausewtimeout
__getpagesizeflockmvgetstrsigpendingwtouchln
__getpgidflockfilemvhlinesigprocmaskwvline
__h_errno_locationflushinpmvinchsigqueuexdr_accepted_reply
__libc_current_sigrtmaxfmtmsgmvinchnstrsigrelsexdr_array
__libc_current_sigrtminfnmatchmvinchstrsigsetxdr_bool
__libc_start_mainfopenmvinnstrsigsuspendxdr_bytes
__lxstatfopen64mvinschsigtimedwaitxdr_callhdr
__lxstat64forkmvinsnstrsigwaitxdr_callmsg
__mempcpyforkptymvinsstrsigwaitinfoxdr_char
__rawmemchrfpathconfmvinstrsinxdr_double
__register_atforkfprintfmvprintwsincosxdr_enum
__sigsetjmpfputcmvscanwsincosfxdr_float
__stpcpyfputsmvvlinesincoslxdr_free
__strdupfputwcmvwaddchsinfxdr_int
__strtod_internalfputwsmvwaddchnstrsinhxdr_long
__strtof_internalfreadmvwaddchstrsinhfxdr_opaque
__strtok_rfreemvwaddnstrsinhlxdr_opaque_auth
__strtol_internalfreeaddrinfomvwaddstrsinlxdr_pointer
__strtold_internalfreelocalemvwchgatsleepxdr_reference
__strtoll_internalfreopenmvwdelchslk_attr_setxdr_rejected_reply
__strtoul_internalfreopen64mvwgetchslk_attroffxdr_replymsg
__strtoull_internalfscanfmvwgetnstrslk_attronxdr_short
__sysconffseekmvwgetstrslk_attrsetxdr_string
__sysv_signalfseekomvwhlineslk_clearxdr_u_char
__wcstod_internalfseeko64mvwinslk_colorxdr_u_int
__wcstof_internalfsetposmvwinchslk_initxdr_u_long
__wcstol_internalfsetpos64mvwinchnstrslk_labelxdr_u_short
__wcstold_internalfstatvfsmvwinchstrslk_noutrefreshxdr_union
__wcstoul_internalfstatvfs64mvwinnstrslk_refreshxdr_vector
__xmknodfsyncmvwinschslk_restorexdr_void
__xstatftellmvwinsnstrslk_setxdr_wrapstring
__xstat64ftellomvwinsstrslk_touchxdrmem_create
_exitftello64mvwinstrsnprintfxdrrec_create
_longjmpftimemvwprintwsockatmarkxdrrec_eof
_pthread_cleanup_popftokmvwscanwsockety0
_pthread_cleanup_pushftruncatemvwvlinesocketpairy0f
_setjmpftruncate64nanosleepsprintfy0l
_tolowerftrylockfilenapmssrandy1
_toupperftwnewlocalesrand48y1f
a64lftw64newpadsrandomy1l
abortfunlockfilenewtermsscanfyn
absfwidenewwinstandendynf
acceptfwprintfnftwstandoutynl
accessfwritenftw64start_colorzError
acctfwscanfnicestatvfszlibVersion
acosgai_strerrornlstatvfs64__finite
acosfgcvtnl_langinfostime__finitef
acoshget_crc_tablenocbreakstpcpy__finitel
acoshfgetaddrinfonodelaystpncpy__fpclassify
acoshlgetbkgdnoechostrcasecmp__fpclassifyf
acoslgetcnonlstrcasestr__isinf
addchgetc_unlockednoqiflushstrcat__isinff
addchnstrgetchnorawstrchr__isinfl
addchstrgetcharnotimeoutstrcmp__isnan
addnstrgetchar_unlockednrand48strcoll__isnanf
addstrgetcontextntohlstrcpy__isnanl
adjtimegetcwdntohsstrcspn__signbit
adler32getdateopenstrdup__signbitf
alarmgetegidopen64strerrorauthnone_create
asctimegetenvopendirstrerror_rbind_textdomain_codeset
asctime_rgeteuidopenlogstrfmonbindtextdomain
asingetgidopenptystrlencacos
asinfgetgrentoverlaystrncasecmpcacosf
asinhgetgrgidoverwritestrncatcacosl
asinhfgetgrgid_rpair_contentstrncmpcasin
asinhlgetgrnampam_authenticatestrncpycasinf
asinlgetgrnam_rpam_endstrndupcasinl
asprintfgetgrouplistpam_fail_delaystrnlencatan
atangetgroupspam_get_itemstrpbrkcatanf
atan2gethostbyaddrpam_getenvliststrptimecatanl
atan2fgethostbynamepam_set_itemstrrchrcbrt
atan2lgethostidpam_startstrsepcbrtf
atanfgethostnamepam_strerrorstrsignalcbrtl
atanhgetitimerpathconfstrspnccos
atanhfgetloadavgpausestrstrccosf
atanhlgetloginpclosestrtodccosl
atanlgetlogin_rpechocharstrtofceil
atofgetnameinfoperrorstrtoimaxceilf
atoigetnstrpipestrtokceill
atolgetoptpmap_getportstrtok_rclnt_create
atollgetopt_longpmap_setstrtolclnt_pcreateerror
attr_getgetopt_long_onlypmap_unsetstrtoldclnt_perrno
attr_offgetpagesizepnoutrefreshstrtollclnt_perror
attr_ongetpeernamepollstrtoqclnt_spcreateerror
attr_setgetpidpopenstrtoulclnt_sperrno
attroffgetppidposix_memalignstrtoullclnt_sperror
attrongetpriorityposix_openptstrtoumaxcopysign
attrsetgetprotobynamepreadstrtouqcopysignf
basenamegetprotobynumberpread64strxfrmcopysignl
baudrategetprotoentprefreshsubpadcsin
bcmpgetpwentprintfsubwincsinf
bcopygetpwnamprintwswabcsinl
beepgetpwnam_rpsignalswapcontextctan
bindgetpwuidpthread_attr_destroyswprintfctanf
bindresvportgetpwuid_rpthread_attr_getdetachstateswscanfctanl
bkgdgetrlimitpthread_attr_getguardsizesymlinkdcgettext
bkgdsetgetrlimit64pthread_attr_getinheritschedsyncdcngettext
bordergetrusagepthread_attr_getschedparamsysconfdgettext
boxgetservbynamepthread_attr_getschedpolicysyslogdlclose
brkgetserventpthread_attr_getscopetandngettext
bsd_signalgetsocknamepthread_attr_getstacktanfdremf
bsearchgetsockoptpthread_attr_getstackaddrtanhdreml
btowcgetstrpthread_attr_getstacksizetanhfencrypt
bzerogetsuboptpthread_attr_inittanhlexp
cabsgettimeofdaypthread_attr_setdetachstatetanlexp2
cabsfgetuidpthread_attr_setguardsizetcdrainexp2f
cabslgetutentpthread_attr_setinheritschedtcflowexpf
cacoshgetutent_rpthread_attr_setschedparamtcflushexpl
cacoshfgetutxentpthread_attr_setschedpolicytcgetattrexpm1
cacoshlgetutxidpthread_attr_setscopetcgetpgrpexpm1f
callocgetutxlinepthread_attr_setstacktcgetsidexpm1l
can_change_colorgetwpthread_attr_setstackaddrtcsendbreakfabs
carggetwcpthread_attr_setstacksizetcsetattrfabsf
cargfgetwcharpthread_canceltcsetpgrpfabsl
carglgetwdpthread_cond_destroytdeletefinite
casinhgetwinpthread_cond_inittelldirfinitef
casinhfglobpthread_cond_timedwaittempnamfinitel
casinhlglob64pthread_condattr_destroytermattrsfloor
catanhglobfreepthread_condattr_getpsharedtermnamefloorf
catanhfglobfree64pthread_condattr_inittfindfloorl
catanhlgmtimepthread_condattr_setpsharedtgetentfma
catclosegmtime_rpthread_createtgetflagfmaf
catgetsgrantptpthread_detachtgetnumfmal
catopengzclosepthread_equaltgetstrfmax
cbreakgzdopenpthread_exittgotofmaxf
ccoshgzeofpthread_getconcurrencytigetflagfmaxl
ccoshfgzerrorpthread_getschedparamtigetnumfmin
ccoshlgzflushpthread_getspecifictigetstrfminf
cexpgzgetcpthread_jointimefminl
cexpfgzopenpthread_key_createtimeoutfmod
cexplgzprintfpthread_key_deletetimer_createfmodf
cfgetispeedgzputcpthread_killtimer_deletefmodl
cfgetospeedhalfdelaypthread_mutex_destroytimer_getoverrunfrexp
cfmakerawhas_colorspthread_mutex_inittimer_gettimefrexpf
cfsetispeedhas_icpthread_mutex_locktimer_settimefrexpl
cfsetospeedhas_ilpthread_mutex_trylocktimesgamma
cfsetspeedhcreatepthread_mutex_unlocktmpfilegammaf
chdirhdestroypthread_mutexattr_destroytmpfile64gammal
chgathlinepthread_mutexattr_inittmpnamgetpgid
chmodhsearchpthread_mutexattr_settypetoasciigetpgrp
chownhtonlpthread_oncetolowergetservbyport
chroothtonspthread_rwlock_destroytouchlinegetsid
cimagiconvpthread_rwlock_inittouchwingettext
cimagficonv_closepthread_rwlock_rdlocktouppergzgets
cimagliconv_openpthread_rwlock_timedrdlocktowctransgzputs
clearidcokpthread_rwlock_timedwrlocktowlowergzread
clearerridlokpthread_rwlock_tryrdlocktowuppergzrewind
clearokif_freenameindexpthread_rwlock_trywrlocktparmgzseek
clockif_indextonamepthread_rwlock_unlocktputsgzsetparams
clock_getcpuclockidif_nameindexpthread_rwlock_wrlocktruncategztell
clock_getresif_nametoindexpthread_rwlockattr_destroytruncate64gzwrite
clock_gettimeimaxabspthread_rwlockattr_getpsharedtsearchhypot
clock_nanosleepimaxdivpthread_rwlockattr_initttynamehypotf
clock_settimeimmedokpthread_rwlockattr_setpsharedttyname_rhypotl
cloginchpthread_selftwalkilogb
clog10inchnstrpthread_setcancelstatetypeaheadilogbf
clog10finchstrpthread_setcanceltypetzsetilogbl
clog10lindexpthread_setconcurrencyualarmisendwin
clogfinet_addrpthread_setschedparamulimitldexp
cloglinet_ntoapthread_setschedprioumaskldexpf
closeinet_ntoppthread_setspecificunameldexpl
closedirinet_ptonpthread_sigmaskuncompresslgamma
closeloginflatepthread_testcancelunctrllgamma_r
clrtobotinflateEndptsnameungetclgammaf
clrtoeolinflateInit2_putcungetchlgammaf_r
color_contentinflateInit_putc_unlockedungetwclgammal
color_setinflateResetputcharunlinklgammal_r
compressinflateSetDictionaryputchar_unlockedunlockptllrint
compress2inflateSyncputenvunsetenvllrintf
compressBoundinflateSyncPointputpuntouchwinllrintl
confstrinit_colorputsuse_envllround
conjinit_pairpututxlineuselocalellroundf
conjfinitgroupsputwusleepllroundl
conjlinitscrputwcutimelog
connectinitstateputwcharutimeslog10
copywininnstrputwinutmpnamelog10f
cosinschpwritevasprintflog10l
cosfinsdellnpwrite64vdprintflog1p
coshinsertlnqiflushverrxlog1pf
coshfinsnstrqsortvforklog1pl
coshlinsqueraisevfprintflog2
coslinsstrrandvfscanflog2f
cpowinstrrand_rvfwprintflog2l
cpowfintrflushrandomvfwscanflogb
cpowlioctlrawvidattrlogbf
cprojis_linetouchedreadvidputslogbl
cprojfis_wintouchedreaddirvlinelogf
cprojlisalnumreaddir64vprintflogl
crc32isalphareaddir_rvscanflrint
crealisasciireadlinkvsnprintflrintf
crealfisattyreadvvsprintflrintl
creallisblankreallocvsscanflround
creatiscntrlrealpathvswprintflroundf
creat64isdigitrecvvswscanflroundl
cryptisgraphrecvfromvsyslogmatherr
csinhislowerrecvmsgvw_printwmodf
csinhfisprintrefreshvw_scanwmodff
csinhlispunctregcompvwprintfmodfl
csqrtisspaceregerrorvwprintwnan
csqrtfisupperregexecvwscanfnanf
csqrtliswalnumregfreevwscanwnanl
ctanhiswalpharemovewaddchnearbyint
ctanhfiswblankremquewaddchnstrnearbyintf
ctanhliswcntrlrenamewaddchstrnearbyintl
ctermidiswctypereset_prog_modewaddnstrnextafter
ctimeiswdigitreset_shell_modewaddstrnextafterf
ctime_riswgraphresettywarnnextafterl
curs_setiswlowerrestarttermwarnxnexttoward
cuseridiswprintrewindwattr_getnexttowardf
daemoniswpunctrewinddirwattr_offnexttowardl
def_prog_modeiswspacerindexwattr_onngettext
def_shell_modeiswupperripofflinewattr_setpam_acct_mgmt
deflateiswxdigitrmdirwattroffpam_chauthtok
deflateBoundisxdigitsavettywattronpam_close_session
deflateCopyj0sbrkwattrsetpam_open_session
deflateEndj0fscanfwbkgdpam_setcred
deflateInit2_j0lscanwwbkgdsetpow
deflateInit_j1sched_get_priority_maxwborderpow10
deflateParamsj1fsched_get_priority_minwchgatpow10f
deflateResetj1lsched_getparamwclearpow10l
deflateSetDictionaryjnsched_getschedulerwclrtobotpowf
del_curtermjnfsched_rr_get_intervalwclrtoeolpowl
delay_outputjnlsched_setparamwcolor_setpthread_cond_broadcast
delchjrand48sched_setschedulerwcpcpypthread_cond_signal
deletelnkey_decryptsessionsched_yieldwcpncpypthread_cond_wait
delscreenkeynamescr_dumpwcrtombpthread_mutexattr_getpshared
delwinkeypadscr_initwcscasecmppthread_mutexattr_gettype
derwinkillscr_restorewcscatpthread_mutexattr_setpshared
difftimekillcharscr_setwcschrredrawwin
dirnamekillpgscrlwcscmpremainder
divl64ascrollwcscollremainderf
dladdrlabsscrollokwcscpyremainderl
dlerrorlchownseed48wcscspnremquo
dlopenlcong48seekdirwcsdupremquof
dlsymldivselectwcsftimeremquol
doupdateleaveoksem_closewcslenrint
drand48lfindsem_destroywcsncasecmprintf
duplinksem_getvaluewcsncatrintl
dup2listensem_initwcsncmpround
duplocalellabssem_openwcsncpyroundf
dupwinlldivsem_postwcsnlenroundl
echolocaleconvsem_timedwaitwcsnrtombsscalb
echocharlocaltimesem_trywaitwcspbrkscalbf
ecvtlocaltime_rsem_unlinkwcsrchrscalbl
endgrentlockfsem_waitwcsrtombsscalbln
endprotoentlockf64semctlwcsspnscalblnf
endpwentloginsemgetwcsstrscalblnl
endserventlogin_ttysemopwcstodscalbn
endutentlogoutsendwcstofscalbnf
endutxentlogwtmpsendmsgwcstoimaxscalbnl
endwinlongjmpsendtowcstoksetkey
erand48longnameset_curtermwcstolsetpgrp
eraselrand48set_termwcstoldsetsid
erasecharlsearchsetbufwcstollsignificand
erflseeksetbufferwcstombssignificandf
erfclseek64setcontextwcstoqsignificandl
erfcfmakecontextsetegidwcstoulsigreturn
erfclmallocsetenvwcstoullsqrt
erffmblenseteuidwcstoumaxsqrtf
erflmbrlensetgidwcstouqsqrtl
errmbrtowcsetgrentwcswcsstrftime
errormbsinitsetgroupswcswidthsvc_getreqset
errxmbsnrtowcssethostnamewcsxfrmsvc_register
execlmbsrtowcssetitimerwctobsvc_run
execlembstowcssetlocalewctombsvc_sendreply
execlpmbtowcsetlogmaskwctranssvcerr_auth
execvmemccpysetpgidwctypesvcerr_decode
execvememchrsetprioritywcwidthsvcerr_noproc
execvpmemcmpsetprotoentwdelchsvcerr_noprog
exitmemcpysetpwentwdeletelnsvcerr_progvers
fchdirmemmemsetregidwechocharsvcerr_systemerr
fchmodmemmovesetreuidwerasesvcerr_weakauth
fchownmemrchrsetrlimitwgetchsvctcp_create
fclosememsetsetrlimit64wgetnstrsvcudp_create
fcntlmetasetscrregwgetstrsyncok
fcvtmkdirsetserventwhlinesystem
fdatasyncmkfifosetsockoptwinchtextdomain
fdimmkstempsetstatewinchnstrtgamma
fdimfmkstemp64setuidwinchstrtgammaf
fdimlmktempsetuptermwinnstrtgammal
fdopenmktimesetutentwinschtrunc
feclearexceptmlocksetutxentwinsdellntruncf
fegetenvmlockallsetvbufwinsertlntruncl
fegetexceptflagmmapshm_openwinsnstrwait
fegetroundmmap64shm_unlinkwinsstrwait4
feholdexceptmoveshmatwinstrwaitpid
feofmprotectshmctlwmemchrwcursyncup
feraiseexceptmrand48shmdtwmemcmpwnoutrefresh
ferrormsgctlshmgetwmemcpywredrawln
fesetenvmsggetshutdownwmemmovewsyncdown
fesetexceptflagmsgrcvsigactionwmemsetwsyncup
fesetroundmsgsnd