summaryrefslogtreecommitdiff
path: root/libc/misc
AgeCommit message (Collapse)Author
2006-03-09Remove __libc_internal_tsd_{s,g}et, they do not exist anymorePeter S. Mazinger
2006-03-07Add UCLIBC_HAS_SSP_COMPAT option guarding gcc-3.x ssp supportPeter S. Mazinger
2006-03-01return NULL if year is too bigMike Frysinger
2006-03-01alpha needs ipc64 funk tooMike Frysinger
2006-02-28Sync w/ glibcPeter S. Mazinger
2006-02-28Cleanup/sync w/ glibcPeter S. Mazinger
2006-02-27Rich Felker's glob() ported to uClibcPeter S. Mazinger
2006-02-27Get rid of redefines on ppc pointed out by vapierPeter S. Mazinger
2006-02-26Don't build glob64 for non-LFSPeter S. Mazinger
2006-02-26Use _lfs_64, reorganize a bit, why did stat*fs64 use stat*fs?Peter S. Mazinger
2006-02-26Remove unneeded hidden_proto(readdir*)Peter S. Mazinger
2006-02-26Use _lfs_64.h in all *64.cPeter S. Mazinger
2006-02-26Define internal readdir*_r() and use _lfs_64.hPeter S. Mazinger
2006-02-18tweak the idea between having a MMU and actually using itMike Frysinger
2006-02-17touchup whitespaceMike Frysinger
2006-02-16Change collated_compare/prefix_array to __x hidden, shrinks glob64 from 2352 ↵Peter S. Mazinger
to 2063
2006-02-16Remove __P(), reorder so that gcc-4.0.2 does not fail w/ multiPeter S. Mazinger
2006-02-15DOMULTI may be used for libc, the excluded files need work, ↵Peter S. Mazinger
linuxthreads[_db] as well, don't try on slow box
2006-02-15make sure we reset static_fd after it's closed in utmpname()Mike Frysinger
2006-02-15fix fcntl() call so that it actually forces file to be closed on exec()Mike Frysinger
2006-02-14after much deliberation, may i present Joseph S. Myers patch to add support ↵Mike Frysinger
for .init and .fini array processing for the gory details, see the mailing list: http://www.uclibc.org/lists/uclibc/2006-January/014079.html http://www.uclibc.org/lists/uclibc/2006-February/014285.html
2006-02-14remove fstat jump relocPeter S. Mazinger
2006-02-13libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵Peter S. Mazinger
libc.a/libc.so, the diffs go into libc-static-y/libc-shared-y exclusively, add IMA to libc, don't use any MSRC anymore
2006-02-13environ is GNU extensionPeter S. Mazinger
2006-02-13s/#if/#ifdef/Peter S. Mazinger
2006-02-13Add files for IMA. Yes, I know it's a hack and no, I won't split the ↵Peter S. Mazinger
affected files
2006-02-13More renames for IMAPeter S. Mazinger
2006-02-13Remove unused filePeter S. Mazinger
2006-02-13Rename some files, that will conflict w/ IMAPeter S. Mazinger
2006-02-13Remove unused filesPeter S. Mazinger
2006-02-11rholzmann writes in Bug 716:Mike Frysinger
utent.c has a few problems with mutex locking when used in a binary that was linked with pthreads. The are a few deadlock conditions where functions may be called which lock the utmplock but never release it and where a function that hold the lock calls other functions which try to relock the same lock. For example, notice in the __getutent function the error condition does not unlock the semaphore. The problem is not visible when pthreads isn't used since the lock/unlock functions are NOOP functions.
2006-02-07include stdint.h and check __intptr_t_defined to see if we need to setup ↵Mike Frysinger
uintptr_t
2006-02-04rfelker reports in Bug 683 that we leak file descriptors if the fcntl() ↵Mike Frysinger
fails ... so fix that. add back in fstat() ofter we open() the directory as we need the blocksize further down in the code. unify the memory error handling to shrink the code there a little.
2006-02-04add note about raceconditionMike Frysinger
2006-02-04use O_DIRECTORY when possible, saves us from having to use stat() thus ↵Mike Frysinger
cutting codesize/race condition
2006-02-04add some copyright/license infoMike Frysinger
2006-02-03err() is not used internallyPeter S. Mazinger
2006-02-02even the hidden version of the weaks in libc (as strong in libpthread) have ↵Peter S. Mazinger
to be weaks
2006-02-01Make it build w/ HAVE_SHARED disabled and SSP enabledPeter S. Mazinger
2006-02-01gcc41 does not like this at allPeter S. Mazinger
2006-02-01global data uses libc_hidden_data_def, convert all -I hope- and add some newPeter S. Mazinger
2006-01-31add comment to know why it's weakPeter S. Mazinger
2006-01-31change strong to weak_alias, arm fails, thx Khem RajPeter S. Mazinger
2006-01-30strlen is -cheaper- then strnlenPeter S. Mazinger
2006-01-30some more prototypesPeter S. Mazinger
2006-01-30make regex a little bit smallerPeter S. Mazinger
2006-01-29Patch by Joseph S. Myers to add support for ARM EABIMike Frysinger
2006-01-29Add back the current glibc copyright notice, although the file is far differentPeter S. Mazinger
2006-01-29rename local tty variable to not shadow tty funcMike Frysinger
2006-01-29no point in redeclaring oldcount locallyMike Frysinger