Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-27 | Some warnings go away | Peter S. Mazinger | |
2006-01-23 | Make i386 build w/ -std=c99 (almost) | 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-19 | move a bunch of arch-specific checks out of common files and into an arch ↵ | Mike Frysinger | |
specific header file to make porting/updates a lot easier | |||
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-09 | update for newer binutils | Mike Frysinger | |
2006-01-08 | fix typo | Mike Frysinger | |
2006-01-05 | grammar fix | Mike Frysinger | |
2005-12-16 | New hidden versions | Peter S. Mazinger | |
2005-12-14 | Hide _stdio_init/term, sorry, one change went mistakenly into the earlier commit | Peter S. Mazinger | |
2005-12-09 | add an abort for arm | Mike Frysinger | |
2005-12-08 | Convert the rest of users to hidden | Peter S. Mazinger | |
2005-12-06 | macro out the thread funcs in libc if threading is disabled | Mike Frysinger | |
2005-12-03 | More hiding, including __mempcpy | Peter S. Mazinger | |
2005-12-01 | Hide mostly used functions | Peter S. Mazinger | |
2005-11-15 | Hide more of stdio,getdents, use internal __raise | Peter S. Mazinger | |
2005-07-28 | Add a config option for abort() to shutdown the stdio subsystem. This is | Manuel Novoa III | |
mainly to cut down on noise in the NIST/PCTS tests since older POSIX behavior was to fclose() (and hence fflush()) all open streams. | |||
2005-07-10 | define an abort instruction for m68k | Mike Frysinger | |
2005-07-10 | define an abort instruction for alpha | Mike Frysinger | |
2005-07-10 | alphabetize and warn if an arch is undefined | Mike Frysinger | |
2005-06-29 | whitespace/syntax updates | Mike Frysinger | |
2005-06-29 | if we have a signal handler in place to cover SIGABRT, we have to make sure ↵ | Mike Frysinger | |
the code that unregisters it raises SIGABRT again so the program actually aborts | |||
2004-02-12 | Paul Mundt lethal at linux-sh dot org writes: | Eric Andersen | |
We can't use trapa #0xff on sh2, the only permissible trapa ranges are 32 to 63. On SH-2, we use trapa32 to issue a break in the same way that trapa #0xff is used on SH-3/4. This behavior is implementation specific, but is what is used in sh-ipl+g, linux, eCos, uITRON, etc. so we follow suit here. | |||
2004-02-11 | New stdio core. Should be more maintainable. Fixes a couple of bugs. | Manuel Novoa III | |
Codepaths streamlined. Improved performance for nonthreaded apps when linked with a thread-enabled libc. Minor iconv bug and some locale/thread related startup issues fixed. These showed up in getting a gcj-compiled java helloworld app running. Removed some old extension functions... _stdio_fdout and _stdio_fsfopen. | |||
2004-01-31 | Patch from Paul Mundt, lethal at linux-sh dot org, | Eric Andersen | |
add sh/sh64: ABORT_INSTRUCTION definitions | |||
2004-01-30 | Add missing abort instruction for powerpc | Eric Andersen | |
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. | |||
2002-08-08 | Fix locking | Eric Andersen | |
2002-03-13 | Oops... forgot to update abort.c. | 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 | |||
2001-12-05 | Hack the 68000 last ditch abort to work for all 68000 targets. | David McCullough | |
2001-11-21 | Cleanup abort() so it behaves itself a bit better | Eric Andersen | |
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-01-01 | A bunch of updates, part from Manuel Novoa III (such as more long long | Eric Andersen | |
support), and other updates by me (better cross platform, cross-compiler, etc, support. Now compiles with 2.0.x kernels for armnommu. | |||
2000-11-04 | Make spelling of uClibc be consistant. | Eric Andersen | |
2000-10-17 | Bypass problem with signals for the moment... | Eric Andersen | |
2000-10-07 | Formatting update | Eric Andersen | |
2000-10-04 | This is making far too much sense. | Eric Andersen | |
2000-07-05 | Many bugfixes, header cleanups, etc. Added abort and glob. | Eric Andersen | |
It is getting closer... -Erik |