summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Expand)Author
2012-07-11implement res_mkqueryEric Faurot
2012-07-11fix an off-by-one error where the return value would point to theChristian Weisgerber
2012-07-10same code update and fix as for gethostnamadr_asyncEric Faurot
2012-07-10simplify the code, improve error handling and plug a potential fd leak on errorEric Faurot
2012-07-10use the value actually passed to the functionEric Faurot
2012-07-10Better handling of servname in getaddrinfo_async. Do not necessarilyEric Faurot
2012-07-09use PAGE_SHIFT instead of PGSHIFT, in preperation for futureTheo de Raadt
2012-07-08implement res_querydomain() required by sendmailEric Faurot
2012-07-08add stub function for gethostent(), and move things around a bit while here.Eric Faurot
2012-07-08Zap extra spaces from function pointer argumentsPhilip Guenthe
2012-07-08Describe tdelete()'s return value correctly and update the related CAVEATPhilip Guenthe
2012-07-07rename function to avoid symbol clashEric Faurot
2012-07-07remove bogus include of bsd.lib.mkEric Faurot
2012-07-03adapt the NetBSD code to make sigpending work on shJonathan Gray
2012-07-01The kernel returns the pending set; this stub has to save it throughPhilip Guenthe
2012-07-01make this actually workMark Kettenis
2012-06-26after a talk with ariane, use MAP_FIXED for mquery to avoid the cost ofTed Unangst
2012-06-26simplify a little of the posix standards talk. ok deraadt guenther jmcTed Unangst
2012-06-26Use nl_langinfo(RADIXCHAR) instead of localeconv()->decimal_point inMatthew Dempsky
2012-06-25Do not use <machine/float.h>, that is an deformed BSD-ism.Theo de Raadt
2012-06-24In sysconf(), don't bother querying the kernel for userspace-onlyMatthew Dempsky
2012-06-24Change arc4random_uniform() to calculate ``2**32 % upper_bound'' asMatthew Dempsky
2012-06-24- document newly imported AF_INET6 support to net_inet_{pton,ntop}Gilles Chehade
2012-06-22add support for AF_INET6 to inet_net_pton() and inet_net_ntop()Gilles Chehade
2012-06-22two changes which should improve realloc. first, fix zapcacheregion toTed Unangst
2012-06-21For now... libpthread is just a container directory, since all the newTheo de Raadt
2012-06-21__tfork() needs to set the stack address of the new thread in the kernel,Philip Guenthe
2012-06-20two small fixes to free page cache. first, we need two nibbles of randomTed Unangst
2012-06-19oops, forgot to install getdtablecount(2); noted by teduTheo de Raadt
2012-06-18Support larger-than-page-alignment requests in posix_memalign() byMatthew Dempsky
2012-06-15Fix typos.Matthew Dempsky
2012-06-07Document mbsnrtowcs() and wcsnrtombs().Matthew Dempsky
2012-06-06Add support for mbsnrtowcs() and wcsnrtombs() to libc.Matthew Dempsky
2012-06-02Update STANDARDS section for a few <stdlib.h> functionsPhilip Guenthe
2012-06-01Fix document titles.Lawrence Teo
2012-06-01Improve standards conformance: ecvt(), fcvt(), gcvt(), mktemp(), ttyslot(),Philip Guenthe
2012-05-22Don't misleadingly suggest that fpos_t only needs to be a complex typeMatthew Dempsky
2012-05-22Document that ftell() may return EOVERFLOW.Matthew Dempsky
2012-05-21Fix ftell() to return EOVERFLOW if the file offset is greater thanMatthew Dempsky
2012-05-14More sysconf(3)-y and pathconf(3)-y goodness from Brad.Matthew Dempsky
2012-04-26Add strnlen() to libkern.Matthew Dempsky
2012-04-25fix a few warningsEric Faurot
2012-04-24document address truncation; from Steffen Daode NurpmesoJason McIntyre
2012-04-22Document that getpeereid() works for SOCK_SEQPACKET sockets too.Matthew Dempsky
2012-04-20use "an addrinfo", not "a addrinfo". ok jmcStuart Henderson
2012-04-20rearrange DESCRIPTION somewhat to make this page more readable;Jason McIntyre
2012-04-19rely on the compiler giving us a built-in alloca. any new architectureTheo de Raadt
2012-04-15Create a new resolver for each thread. It will be done differentlyEric Faurot
2012-04-15calling getnameinfo here is a bad idea. use inet_ntop.Eric Faurot
2012-04-15tweak previous;Jason McIntyre