summaryrefslogtreecommitdiffstats
path: root/libc/misc
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename some files, that will conflict w/ IMAPeter S. Mazinger2006-02-134-3/+3
|
* Remove unused filesPeter S. Mazinger2006-02-135-160/+0
|
* rholzmann writes in Bug 716:Mike Frysinger2006-02-111-13/+12
| | | | 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.
* include stdint.h and check __intptr_t_defined to see if we need to setup ↵Mike Frysinger2006-02-071-1/+2
| | | | uintptr_t
* rfelker reports in Bug 683 that we leak file descriptors if the fcntl() ↵Mike Frysinger2006-02-041-8/+13
| | | | 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.
* add note about raceconditionMike Frysinger2006-02-041-0/+5
|
* use O_DIRECTORY when possible, saves us from having to use stat() thus ↵Mike Frysinger2006-02-041-1/+6
| | | | cutting codesize/race condition
* add some copyright/license infoMike Frysinger2006-02-0411-0/+67
|
* err() is not used internallyPeter S. Mazinger2006-02-031-1/+0
|
* even the hidden version of the weaks in libc (as strong in libpthread) have ↵Peter S. Mazinger2006-02-022-2/+2
| | | | to be weaks
* Make it build w/ HAVE_SHARED disabled and SSP enabledPeter S. Mazinger2006-02-011-6/+13
|
* gcc41 does not like this at allPeter S. Mazinger2006-02-011-2/+0
|
* global data uses libc_hidden_data_def, convert all -I hope- and add some newPeter S. Mazinger2006-02-017-19/+21
|
* add comment to know why it's weakPeter S. Mazinger2006-01-311-0/+1
|
* change strong to weak_alias, arm fails, thx Khem RajPeter S. Mazinger2006-01-311-1/+1
|
* strlen is -cheaper- then strnlenPeter S. Mazinger2006-01-301-8/+7
|
* some more prototypesPeter S. Mazinger2006-01-302-1/+6
|
* make regex a little bit smallerPeter S. Mazinger2006-01-303-3/+7
|
* Patch by Joseph S. Myers to add support for ARM EABIMike Frysinger2006-01-292-0/+7
|
* Add back the current glibc copyright notice, although the file is far differentPeter S. Mazinger2006-01-291-4/+18
|
* rename local tty variable to not shadow tty funcMike Frysinger2006-01-291-2/+2
|
* no point in redeclaring oldcount locallyMike Frysinger2006-01-291-2/+0
|
* no point in declaring save_err locallyMike Frysinger2006-01-291-1/+1
|
* Bernhard Fischer writes: remove unused variablesMike Frysinger2006-01-291-2/+0
|
* Do not build *64 and llseek, correct some failure when LFS is disabledPeter S. Mazinger2006-01-271-0/+2
|
* Disabled NULL error_print_progname, uselessPeter S. Mazinger2006-01-271-1/+1
|
* Update copyright and commentPeter S. Mazinger2006-01-271-21/+5
|
* Some warnings go awayPeter S. Mazinger2006-01-272-5/+6
|
* Some more prototypes, enable missing-prototypes/declarations warnings for nowPeter S. Mazinger2006-01-261-2/+4
|
* Get rid of missing prototype warningsPeter S. Mazinger2006-01-262-8/+8
|
* error_message_count got lostPeter S. Mazinger2006-01-251-2/+0
|
* Hope to mips buildPeter S. Mazinger2006-01-241-3/+5
|
* Change to build w/ -std=c99Peter S. Mazinger2006-01-231-3/+4
|
* s/_GNU_SOURCE/__USE_GNU/Peter S. Mazinger2006-01-231-1/+1
|
* Reorganize a bit and mark tdestroy as GNU extensionPeter S. Mazinger2006-01-231-4/+5
|
* Mark __assert as noreturnPeter S. Mazinger2006-01-231-1/+1
|
* Guard hidden prototypes accordinglyPeter S. Mazinger2006-01-231-2/+7
|
* Get rid of nested warningsPeter S. Mazinger2006-01-236-11/+34
|
* Remove redundancy and move hidden prototypes aroundPeter S. Mazinger2006-01-231-4/+4
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-2228-52/+0
| | | | is a useless attempt
* Use __typeof instead of adding full prototypesPeter S. Mazinger2006-01-211-2/+2
|
* fix warning when sizeof uchar_t is 8 bitsMike Frysinger2006-01-201-0/+4
|
* Correct wordexp, I have hidden for now __libc_arg[c,v], there is no other ↵Peter S. Mazinger2006-01-201-17/+21
| | | | use within uClibc, depends on fnmatch as well
* get rid of alpha definesMike Frysinger2006-01-181-2/+2
|
* s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now ↵Peter S. Mazinger2006-01-168-37/+35
| | | | see what libpthread will do ...
* Correct a typoPeter S. Mazinger2006-01-161-0/+2
|
* Last relocs jump and global data, (even locales) that I could remove are ↵Peter S. Mazinger2006-01-1616-7/+127
| | | | gone from libc. The remaining are left as exercise for others ;-)
* some global data relocs gonePeter S. Mazinger2006-01-163-10/+5
|
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-156-58/+55
|
* make tzset jump reloc free if UCLIBC_HAS_CTYPE_CTABLES is not enabledPeter S. Mazinger2006-01-151-0/+4
|