Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-01 | global data uses libc_hidden_data_def, convert all -I hope- and add some new | Peter S. Mazinger | |
2006-01-30 | Why this? | Peter S. Mazinger | |
2006-01-29 | Patch by Joseph S. Myers to add support for ARM EABI | Mike Frysinger | |
2006-01-26 | Get rid of missing prototype warnings | 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-16 | Last relocs jump and global data, (even locales) that I could remove are ↵ | Peter S. Mazinger | |
gone from libc. The remaining are left as exercise for others ;-) | |||
2006-01-14 | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | |
missing headers, other jump relocs removed | |||
2006-01-08 | hide internal atexit symbols | Mike Frysinger | |
2005-12-16 | Remove trailing ; | Peter S. Mazinger | |
2005-12-15 | Hide exit/_exit | Peter S. Mazinger | |
2005-12-14 | Hide _stdio_init/term, sorry, one change went mistakenly into the earlier commit | Peter S. Mazinger | |
2005-12-06 | macro out the thread funcs in libc if threading is disabled | Mike Frysinger | |
2005-11-26 | 100 JUMP relocs less (remaining 431) by hiding internally used ones | Peter S. Mazinger | |
2005-09-26 | Add __cxa_atexit and __cxa_finalize, thanks to Stephen Warren. This patch ↵ | Peter S. Mazinger | |
breaks compatibility with existing binaries, unless the new COMPAT_ATEXIT option is enabled. | |||
2005-09-08 | punt _DL_FINI_CRT_COMPAT option now that 0.9.28 has been released | Mike Frysinger | |
2005-09-08 | Fix by Martin Schlemmer: | Mike Frysinger | |
If _DL_FINI_CRT_COMPAT is defined, _dl_fini is setup to run at exit via atexit(), but this makes it run _before_ the fini (__app_fini()) of the app, causing stuff like sandbox that frees structs, etc via its fini to segfault. http://bugs.gentoo.org/98187 | |||
2005-05-28 | Add Peter Mazinger fini/crt compat patch. Select DL_FINI_CRT_COMPAT to | Joakim Tjernlund | |
be able to run apps built with 0.9.27. This also renames __uClibc_start_main to __uClibc_main. This compat option should be removed some time after 0.9.28 is released. Let me know if you don't like this change. | |||
2005-05-21 | Enable new FINI processing. ldso now passes a FINI function | Joakim Tjernlund | |
ptr to crt. Only PowerPC and x86 support this currently. | |||
2005-03-20 | Prepare for moving ldso FINI handling into libc. | Joakim Tjernlund | |
#define _DL_DO_FINI_IN_LIBC to enable(the arch specific part needs to be in place first). | |||
2003-12-27 | Handle the app_fini stuff in exit without requiring atexit(). | Manuel Novoa III | |
This avoids pulling in all the malloc/free code for a simple true/false app. | |||
2003-12-27 | Fix a long-standing bug with pthreads. A couple of linuxthreads files | Manuel Novoa III | |
were including libc-lock.h which had a bunch of weak pragmas. Also, uClibc supplied a number of no-op weak thread functions even though many weren't needed. This combined result was that sometimes the functional versions of thread functions in pthread would not override the weaks in libc. While fixing this, I also prepended double-underscore to all necessary weak thread funcs in uClibc, and removed all unused weaks. I did a test build, but haven't tested this since these changes are a backport from my working tree. I did test the changes there and no longer need to explicitly add -lpthread in the perl build for perl to pass its thread self tests. | |||
2003-11-02 | If realloc failed, we'd lose the pointer to the exit function table. | Manuel Novoa III | |
2003-01-24 | Doh! Fix potential stack corruption caused by dynamic atexit | Eric Andersen | |
allocating size incorrectly.... -Erik | |||
2002-11-19 | Implement dynamic atexit handling. Adds a few bytes and a dependancy | Eric Andersen | |
on malloc (via realloc). -Erik | |||
2002-09-26 | A bug fix from Alexey V. Neyman: | Eric Andersen | |
In case of vfork(), the parent was left with __exit_count of -1 and thus tried to find non-NULL value of __exit_function_table[-1].atexit, __exit_function_table[-2].atexit and call this function; of course, it leads to coredump. | |||
2002-08-12 | Doh! missed a spot. | Eric Andersen | |
-Erik | |||
2002-08-12 | Geez I'm an idiot some times. I shouldn't code when I'm exhausted. | Eric Andersen | |
I _totally_ screwed up the locking on exit and atexit such that it didn't do any good at all. -Erik | |||
2002-08-09 | Add missing thread-safe locking. | Eric Andersen | |
-Erik | |||
2002-03-12 | Swap in the new stdio code. | Manuel Novoa III | |
2002-02-19 | Doh! Miles Bader noticed a couple of spots where I forgot | Eric Andersen | |
to mark __stdio_flush_buffers with weak_function. Oops! | |||
2002-02-18 | Rename __stdio_close_all to __stdio_flush_buffers. Eliminate an | Eric Andersen | |
unnecessary variable | |||
2002-02-18 | Doh! | Eric Andersen | |
2002-02-18 | Miles Bader writes: | Eric Andersen | |
Programs that don't use stdio crash in the `exit' function, because they call through the pointer__uClibc_cleanup, which has a value of 0. It has a value of 0 because __uClibc_main.c initializes it to the address of `__stdio_close_all', which is a weak symbol (and so is 0 if stdio is not used). This patch from Miles fixes it, though we need to audit __stdio_close_all usage to be sure... | |||
2002-02-13 | A number of naming updates in preparation for adding in | Eric Andersen | |
proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me. | |||
2001-10-11 | Patch from Miles Bader <miles@lsi.nec.co.jp> to support the v850. | Eric Andersen | |
He sent this patch to me a month ago, but I forgot to apply it... | |||
2001-09-27 | Update to accomodate the header file changes | Eric Andersen | |
2001-04-06 | Fix include/errno.h to not use kernel header, and instead use bits/errno.h. | Eric Andersen | |
This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik | |||
2001-02-19 | Create __uClibc_main to handle what can be done in C instead of each arch's | Manuel Novoa III | |
respective crt0.S. crt0.S should now only be responsible for setting things up to call __uClibc_main(argc, argv, envp), which will do any other necessary setup (setting global __environ, stdio init, etc), call main, and exit. This should ease both maintainance and porting. | |||
2001-02-09 | Revert stdio to initializing itself. Not quite a pretty but that ensures that | Eric Andersen | |
we don't blow up by using too much stack space, and simplifies the job of supporting new architectures, since they don't have to mess with calling foo init functions in crt0 and cleaning up the resulting damage. -Erik | |||
2001-01-25 | Clean up atexit.c; make sure sysconf and atexit agree; link in ref'd libgcc.a | Manuel Novoa III | |
objects with shared uClibc; allow disabling long long support. | |||
2001-01-17 | Note about need to match _SC_ATEXIT_MAX. Minor macro name change. | Manuel Novoa III | |
2001-01-11 | A large update from Manuel Novoa III <mnovoa3@bellsouth.net>. | Eric Andersen | |
2000-10-09 | Bug ugly formatting update | Eric Andersen | |
2000-07-05 | Many bugfixes, header cleanups, etc. Added abort and glob. | Eric Andersen | |
It is getting closer... -Erik | |||
2000-05-14 | Initial revision | Erik Andersen | |