Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-09 | Factor out the core of vprintf() into separate function | Denis Vlasenko | |
vprintf_internal, so that: * vprintf() does locking and __STDIO_STREAM_TRANS_TO_WRITE thing, then calls vprintf_internal * vsnprintf, vdprintf.c, vasprintf.c use vprintf_internal directly This makes sprintf faster (since it doesn't do any locking) and stops it from pulling in fseek in static compile. | |||
2006-12-12 | Fix/disable locking when pthreads is disabled | Eric Andersen | |
2006-12-08 | Fill in a few more of the missing pieces... | Eric Andersen | |
2006-12-06 | stdio update from mjn3 | Eric Andersen | |
2006-03-10 | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | |
most of global data relocations are back | |||
2006-02-13 | Remove unused prototypes | 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-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 | |||
2005-12-16 | Get rid of warnings, use internals, create new hidden versions | Peter S. Mazinger | |
2005-12-09 | Implement hidden listen, use the hidden listen/accept | Peter S. Mazinger | |
2005-12-09 | Guard wchar dependent stuff properly, thx vapier | Peter S. Mazinger | |
2005-12-09 | Implement hidden *scanf | Peter S. Mazinger | |
2005-12-09 | Implement all needed hidden *printf and correct vasprintf, thx blindvt | Peter S. Mazinger | |
2005-12-04 | More hiding, 300 left | Peter S. Mazinger | |
2005-12-03 | Rename newly created __libc_x (reserved for libpthread overwrites) w/ ↵ | Peter S. Mazinger | |
x_internal, do not use cascading aliases | |||
2005-11-27 | Hide some of mem* and str* | Peter S. Mazinger | |
2005-11-26 | Adapt to renamed internal __f{ge.pu}tc_unlocked | Peter S. Mazinger | |
2005-11-21 | Hide some | Peter S. Mazinger | |
2005-11-19 | make sure we pull in features.h | Mike Frysinger | |
2005-11-15 | Hide more of stdio,getdents, use internal __raise | Peter S. Mazinger | |
2005-11-15 | Update copyright notice | Peter S. Mazinger | |
2005-11-15 | Hide some internally used functions | Peter S. Mazinger | |
2004-05-07 | Fix a couple of issues in configurations I hadn't tested. | Manuel Novoa III | |
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. |