Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-02-14 | after 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-14 | remove fstat jump reloc | Peter S. Mazinger | |
2006-02-13 | libc-{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-13 | environ is GNU extension | Peter S. Mazinger | |
2006-02-13 | s/#if/#ifdef/ | Peter S. Mazinger | |
2006-02-13 | Add files for IMA. Yes, I know it's a hack and no, I won't split the ↵ | Peter S. Mazinger | |
affected files | |||
2006-02-13 | More renames for IMA | Peter S. Mazinger | |
2006-02-13 | Remove unused file | Peter S. Mazinger | |
2006-02-13 | Rename some files, that will conflict w/ IMA | Peter S. Mazinger | |
2006-02-13 | Remove unused files | Peter S. Mazinger | |
2006-02-11 | rholzmann 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-07 | include stdint.h and check __intptr_t_defined to see if we need to setup ↵ | Mike Frysinger | |
uintptr_t | |||
2006-02-04 | rfelker 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-04 | add note about racecondition | Mike Frysinger | |
2006-02-04 | use O_DIRECTORY when possible, saves us from having to use stat() thus ↵ | Mike Frysinger | |
cutting codesize/race condition | |||
2006-02-04 | add some copyright/license info | Mike Frysinger | |
2006-02-03 | err() is not used internally | Peter S. Mazinger | |
2006-02-02 | even the hidden version of the weaks in libc (as strong in libpthread) have ↵ | Peter S. Mazinger | |
to be weaks | |||
2006-02-01 | Make it build w/ HAVE_SHARED disabled and SSP enabled | Peter S. Mazinger | |
2006-02-01 | gcc41 does not like this at all | Peter S. Mazinger | |
2006-02-01 | global data uses libc_hidden_data_def, convert all -I hope- and add some new | Peter S. Mazinger | |
2006-01-31 | add comment to know why it's weak | Peter S. Mazinger | |
2006-01-31 | change strong to weak_alias, arm fails, thx Khem Raj | Peter S. Mazinger | |
2006-01-30 | strlen is -cheaper- then strnlen | Peter S. Mazinger | |
2006-01-30 | some more prototypes | Peter S. Mazinger | |
2006-01-30 | make regex a little bit smaller | Peter S. Mazinger | |
2006-01-29 | Patch by Joseph S. Myers to add support for ARM EABI | Mike Frysinger | |
2006-01-29 | Add back the current glibc copyright notice, although the file is far different | Peter S. Mazinger | |
2006-01-29 | rename local tty variable to not shadow tty func | Mike Frysinger | |
2006-01-29 | no point in redeclaring oldcount locally | Mike Frysinger | |
2006-01-29 | no point in declaring save_err locally | Mike Frysinger | |
2006-01-29 | Bernhard Fischer writes: remove unused variables | Mike Frysinger | |
2006-01-27 | Do not build *64 and llseek, correct some failure when LFS is disabled | Peter S. Mazinger | |
2006-01-27 | Disabled NULL error_print_progname, useless | Peter S. Mazinger | |
2006-01-27 | Update copyright and comment | Peter S. Mazinger | |
2006-01-27 | Some warnings go away | Peter S. Mazinger | |
2006-01-26 | Some more prototypes, enable missing-prototypes/declarations warnings for now | Peter S. Mazinger | |
2006-01-26 | Get rid of missing prototype warnings | Peter S. Mazinger | |
2006-01-25 | error_message_count got lost | Peter S. Mazinger | |
2006-01-24 | Hope to mips build | Peter S. Mazinger | |
2006-01-23 | Change to build w/ -std=c99 | Peter S. Mazinger | |
2006-01-23 | s/_GNU_SOURCE/__USE_GNU/ | Peter S. Mazinger | |
2006-01-23 | Reorganize a bit and mark tdestroy as GNU extension | Peter S. Mazinger | |
2006-01-23 | Mark __assert as noreturn | Peter S. Mazinger | |
2006-01-23 | Guard hidden prototypes accordingly | Peter S. Mazinger | |
2006-01-23 | Get rid of nested warnings | Peter S. Mazinger | |
2006-01-23 | Remove redundancy and move hidden prototypes around | Peter S. Mazinger | |
2006-01-22 | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | |
is a useless attempt | |||
2006-01-21 | Use __typeof instead of adding full prototypes | Peter S. Mazinger | |
2006-01-20 | fix warning when sizeof uchar_t is 8 bits | Mike Frysinger | |