summaryrefslogtreecommitdiffstats
path: root/libc/stdio
Commit message (Collapse)AuthorAgeFilesLines
* fix from Atsushi Nemoto for displaying of 64bit typesMike Frysinger2007-01-291-1/+1
|
* fix from Roman Kononov for reading in of 64bit typesMike Frysinger2007-01-291-1/+1
|
* - Trim superfluous trailing whitespace. No obj-code changes.Bernhard Reutner-Fischer2007-01-201-10/+8
|
* - provide a hidden_def for fputc_unlocked that is aliased to __fputc_unlocked.Bernhard Reutner-Fischer2006-12-221-0/+2
| | | | Fixes undefined references to __fputc_unlocked when calling fputc().
* Paul Brook writes:Mike Frysinger2006-12-201-0/+1
| | | | | | | | | | When building an arm-uclinux toolchain withthreading disabled I get: libc/stdio/getchar.c:26: error: 'getchar' aliased to undefined symbol 'getchar_unlocked' It looks like it's missing libc_hidden_def(getchar_unlocked). Patch below fixes this.
* Patch from Bernhard Fischer:Eric Andersen2006-12-152-4/+4
| | | | fix compilation if PUTC_MACRO and/or GETC_MACRO is turned off
* Fix/disable locking when pthreads is disabledEric Andersen2006-12-121-0/+13
|
* Fill in a few more of the missing pieces...Eric Andersen2006-12-082-108/+74
|
* Major cleanup of internal mutex locking. Be more consistant in how we doEric Andersen2006-12-071-7/+7
| | | | | | | things, and avoid potential deadlocks caused when a thread holding a uClibc internal lock get canceled and terminates without releasing the lock. This change also provides a single place, bits/uClibc_mutex.h, for thread libraries to modify to change all instances of internal locking.
* Major cleanup of internal mutex locking. Be more consistant in how we doEric Andersen2006-12-071-16/+17
| | | | | | | things, and avoid potential deadlocks caused when a thread holding a uClibc internal lock get canceled and terminates without releasing the lock. This change also provides a single place, bits/uClibc_mutex.h, for thread libraries to modify to change all instances of internal locking.
* stdio update from mjn3Eric Andersen2006-12-0616-79/+283
|
* fixup my copyright notice, trim stale remnants of older notices whichEric Andersen2006-07-051-1/+0
| | | | I had clearly run search/replace on that were cluttering things up.
* Mark some functions as BSD onlyPeter S. Mazinger2006-03-232-0/+6
|
* Correct build if UCLIBC_HAS_CTYPE_TABLES is not definedPeter S. Mazinger2006-03-222-2/+2
|
* Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵Peter S. Mazinger2006-03-1011-46/+1
| | | | most of global data relocations are back
* dont define _stdio_init if it doesnt do anythingMike Frysinger2006-02-181-1/+3
|
* DOMULTI may be used for libc, the excluded files need work, ↵Peter S. Mazinger2006-02-151-2/+10
| | | | linuxthreads[_db] as well, don't try on slow box
* sync with glibc and get a nice size shrinkage in the processMike Frysinger2006-02-141-25/+30
|
* libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵Peter S. Mazinger2006-02-131-70/+19
| | | | 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
* Mark functions as GNU extensionsPeter S. Mazinger2006-02-1310-0/+40
|
* Remove unused prototypesPeter S. Mazinger2006-02-131-8/+0
|
* Add files for IMA. Yes, I know it's a hack and no, I won't split the ↵Peter S. Mazinger2006-02-1342-0/+388
| | | | affected files
* More renames for IMAPeter S. Mazinger2006-02-133-2/+2
|
* missed another global data markingPeter S. Mazinger2006-02-011-1/+1
|
* global data uses libc_hidden_data_def, convert all -I hope- and add some newPeter S. Mazinger2006-02-015-3/+18
|
* Do not build *64 and llseek, correct some failure when LFS is disabledPeter S. Mazinger2006-01-272-0/+4
|
* Get rid of missing prototype warningsPeter S. Mazinger2006-01-263-3/+7
|
* Allow for targets that don't know about signed zero floats."Jan-Benedict Glaw"2006-01-261-2/+2
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-224-5/+0
| | | | is a useless attempt
* fix unused warningsMike Frysinger2006-01-211-2/+2
|
* Build if GETC_MACRO use is disabledPeter S. Mazinger2006-01-171-0/+4
|
* Last relocs jump and global data, (even locales) that I could remove are ↵Peter S. Mazinger2006-01-168-0/+40
| | | | gone from libc. The remaining are left as exercise for others ;-)
* some global data relocs gonePeter S. Mazinger2006-01-161-6/+6
|
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-1510-16/+19
|
* Correct old_vfprintf internal version and make it reloc freePeter S. Mazinger2006-01-151-1/+2
|
* only declare vfork when needed, else no-mmu build failsMike Frysinger2006-01-151-1/+1
|
* same for __fputc_unlockedPeter S. Mazinger2006-01-141-0/+1
|
* get rid of wcrtomb jump relocPeter S. Mazinger2006-01-141-0/+1
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-1436-54/+48
|
* other failures w/ different optionsPeter S. Mazinger2006-01-142-4/+2
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-1487-474/+640
| | | | missing headers, other jump relocs removed
* used hidden closeMike Frysinger2006-01-061-0/+2
|
* use hidden read/write symbolsMike Frysinger2006-01-062-0/+4
|
* Remove trailing ; after *alias()Peter S. Mazinger2005-12-169-22/+22
|
* Forgot about the macros ;-(Peter S. Mazinger2005-12-162-2/+2
|
* Get rid of warnings, use internals, create new hidden versionsPeter S. Mazinger2005-12-1613-26/+44
|
* Hide *getc* *putc*Peter S. Mazinger2005-12-152-8/+13
|
* Hide _stdio_init/term, sorry, one change went mistakenly into the earlier commitPeter S. Mazinger2005-12-141-2/+2
|
* Convert all users of earlier hiddensPeter S. Mazinger2005-12-138-14/+18
|
* Hidden fflush, adapt fopen to hack in libc-internal.hPeter S. Mazinger2005-12-132-3/+8
|