summaryrefslogtreecommitdiffstats
path: root/libc/stdio/_stdio.h
Commit message (Collapse)AuthorAgeFilesLines
* rework internal uClibc mutexes to support futex locking, and nptlAustin Foxley2009-10-171-4/+4
| | | | Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* fix some unneeded PLT referencesDenis Vlasenko2008-11-221-1/+1
|
* remove "register" from _vf[w]printf_internal declarations tooDenis Vlasenko2008-04-101-2/+2
|
* Factor out the core of vprintf() into separate functionDenis Vlasenko2008-04-091-0/+13
| | | | | | | | | | | | 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.
* Fix/disable locking when pthreads is disabledEric Andersen2006-12-121-0/+13
|
* Fill in a few more of the missing pieces...Eric Andersen2006-12-081-86/+67
|
* stdio update from mjn3Eric Andersen2006-12-061-9/+65
|
* Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵Peter S. Mazinger2006-03-101-6/+0
| | | | most of global data relocations are back
* Remove unused prototypesPeter S. Mazinger2006-02-131-8/+0
|
* global data uses libc_hidden_data_def, convert all -I hope- and add some newPeter S. Mazinger2006-02-011-0/+3
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-221-2/+0
| | | | is a useless attempt
* Last relocs jump and global data, (even locales) that I could remove are ↵Peter S. Mazinger2006-01-161-0/+3
| | | | gone from libc. The remaining are left as exercise for others ;-)
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-69/+1
| | | | missing headers, other jump relocs removed
* Get rid of warnings, use internals, create new hidden versionsPeter S. Mazinger2005-12-161-0/+1
|
* Implement hidden listen, use the hidden listen/acceptPeter S. Mazinger2005-12-091-0/+1
|
* Guard wchar dependent stuff properly, thx vapierPeter S. Mazinger2005-12-091-7/+7
|
* Implement hidden *scanfPeter S. Mazinger2005-12-091-0/+15
|
* Implement all needed hidden *printf and correct vasprintf, thx blindvtPeter S. Mazinger2005-12-091-0/+11
|
* More hiding, 300 leftPeter S. Mazinger2005-12-041-0/+2
|
* Rename newly created __libc_x (reserved for libpthread overwrites) w/ ↵Peter S. Mazinger2005-12-031-2/+2
| | | | x_internal, do not use cascading aliases
* Hide some of mem* and str*Peter S. Mazinger2005-11-271-1/+1
|
* Adapt to renamed internal __f{ge.pu}tc_unlockedPeter S. Mazinger2005-11-261-2/+2
|
* Hide somePeter S. Mazinger2005-11-211-14/+16
|
* make sure we pull in features.hMike Frysinger2005-11-191-0/+1
|
* Hide more of stdio,getdents, use internal __raisePeter S. Mazinger2005-11-151-13/+13
|
* Update copyright noticePeter S. Mazinger2005-11-151-2/+2
|
* Hide some internally used functionsPeter S. Mazinger2005-11-151-5/+5
|
* Fix a couple of issues in configurations I hadn't tested.Manuel Novoa III2004-05-071-0/+2
|
* New stdio core. Should be more maintainable. Fixes a couple of bugs.Manuel Novoa III2004-02-111-0/+436
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.