summaryrefslogtreecommitdiff
path: root/libc/misc
AgeCommit message (Collapse)Author
2002-04-09undefine __USE_FILE_OFFSET64, since we absolutely do _NOT_ want interfacesEric Andersen
silently renamed under us or very bad things will happen. In this case, statfs64() ended up recurively calling statfs64() instead of statfs().... -Erik
2002-04-05Add a fun pointer to make apps happyEric Andersen
2002-04-03Richard June <rjune@bravegnuworld.com> noticed that pututlineEric Andersen
was only writing the first sizeof-a-pointer bytes to the utmp file. oops. -Erik
2002-04-03Richard June <rjune@bravegnuworld.com> noticed that setutentEric Andersen
was only opening utmp readonly. Oops.
2002-04-03Doh! I forgot to commit this...Eric Andersen
2002-04-01Remove function declartions from include/features.h, createEric Andersen
a separate header file for those, and fixup references. -Erik
2002-04-01Patches from Yoshinori Sato <qzb04471@nifty.ne.jp> to fix h8300Eric Andersen
support for pthreads and update for the latest and greatest.
2002-03-31Add glob64.c, and add support for glob64 when large file is enabled.Eric Andersen
-Erik
2002-03-31Rework __gen_tempname() to better match glibc, and add mkstemp64(),Eric Andersen
which is needed for busybox ash when using largefile support. -Erik
2002-03-25Patch from Steven J. Hill to disable __fsetlocking whenEric Andersen
threads are disabled. Bug is my fault. oops. -Erik
2002-03-21Support getttyent and friends so ncurses will compileEric Andersen
2002-03-15Add strptime, and commonize some locale stringsEric Andersen
-Erik
2002-03-15Add missing updwtmp() and fix broken makefileEric Andersen
2002-03-15Support gnu error(), patch contributed by Andrew Ip <aip@cwlinux.com>Eric Andersen
2002-03-15Fix non-elf support (in theory). Revert misguided change suggestedEric Andersen
by arcturusnetworks, since Miles Bader reports it is unnecessary. -Erik
2002-03-14Don't call null ctors/dtors.Eric Andersen
-Erik
2002-03-14This should be the last piece needed to make constructors work (usingEric Andersen
a native gcc toolchain). The gcc wrapper still needs some touchups, but we seem to be _there_. Also some touchups to try and shrink uclinux binary sized by stubbing out unneeded stuff. -Erik
2002-03-14Add some symbols needed for C++ to work. Temporary hack...Eric Andersen
2002-03-12Fix a segfault in scandir for empty directories. After looking overEric Andersen
our version, I'm adopting the scandir from glibc (with minor changes) instead as it seems simpler and already correct.
2002-03-12Swap in the new stdio code.Manuel Novoa III
2002-03-09Avoid forced -lpthread lnkage when threading is enabledEric Andersen
2002-02-26A few more little cleanupsEric Andersen
2002-02-26Don't redefine stuffEric Andersen
2002-02-26Fix redefine problemEric Andersen
2002-02-26Fix redefinition problemEric Andersen
2002-02-26Proper support for setting h_errnoEric Andersen
2002-02-25Try this version instead...Eric Andersen
2002-02-23Support isblank()Eric Andersen
2002-02-21Miles Bader noticed that I'd messed up by always pullingEric Andersen
errno in, regardless of whether it is being used... -Erik
2002-02-20This is a bit less messyEric Andersen
2002-02-20Merge in the pthread library. This is the linuxthreads library taken fromEric Andersen
glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen (me). Stefan has hacked things up such that linuxthreads runs on MMU-less systems (tested only on arm-nommu). Erik cleaned things up and made it work properly as a shared library. -Erik
2002-02-18Rename __stdio_close_all to __stdio_flush_buffers. Eliminate anEric Andersen
unnecessary variable
2002-02-18Make shared libs properly list the correct ld.so in the interpEric Andersen
field by being sneaky.
2002-02-18Support strong_alias and begin merging usage of weak_functionEric Andersen
2002-02-05OOps.Eric Andersen
2002-02-02Add in support for the Hitach H8/300H architecture,Eric Andersen
contributed by Yoshinori Sato <qzb04471@nifty.ne.jp>
2002-02-02Add in a weak for __adjtimeEric Andersen
2002-01-17Added insque/remque supportDavid McCullough
2002-01-17Don't print an error if the utmp file doesn't exist, getutent will returnDavid McCullough
NULL as expected.
2002-01-09Doh! I broke getmntent when I added getmntent_r! This fixes it.Eric Andersen
-Erik
2002-01-09Allow people to exclude regex code, since it is huge (27k)Eric Andersen
2002-01-09Fix duplicate of timezoneEric Andersen
2002-01-08Scrub malloc handlingEric Andersen
2002-01-06Support statvfs and statfs. Added getmntent_r (and made it useEric Andersen
strtok_r instead of strtok), taught getmntent to use getmntent_r. -Erik
2001-12-19Update my email address. I am no longer andersen@lineo.comEric Andersen
2001-11-24Sync regex with glibc 2.2.4. I need to add an option to selectEric Andersen
a minamalist replacement. Coming soon... -Erik
2001-11-21Adjust naming for __FORCE_GLIBC__ to __FORCE_GLIBC and addEric Andersen
support for __FORCE_NOGLIBC per Brian Stafford <brian.stafford@office-logic.com>
2001-11-20A few symbols needed for testingEric Andersen
2001-11-14Scrub up some lingering problems preventing readdir64 from workingEric Andersen
and creating several *64 problems, particualrly when client apps used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now. -Erik
2001-10-17In theory, this adds readdir64 and friends. Dunno if theyEric Andersen
work yet or not.... -Erik