summaryrefslogtreecommitdiffstats
path: root/libc/stdio
Commit message (Collapse)AuthorAgeFilesLines
...
* When messing with fd NONBLOCK status, put things back the way we foundEric Andersen2002-02-251-1/+4
| | | | | | them afterwards. As was, this hosed things up for fds shared with a parent process. Very bad for shells... Oops. -Erik
* IEEE Std 1003.1-2001 says that the "fclose() function shall fail [with]Eric Andersen2002-02-231-7/+1
| | | | | | | | EINTR [when] the fclose() function was interrupted by a signal". But looking in the current uClibc stdio.c for some bizarre reason we had a special case where when errno was EINTR, we would keep on trying instead. Doh! Fix that, -Erik
* Per discussion with Manuel, when we call __stdio_flush_buffersEric Andersen2002-02-231-1/+9
| | | | | | from abort() and from _exit(), we need to ensure that flushing will not cause us to block. So use fcntl to set the fd's to non-block mode...
* When vfork is not available and we have an MMU, then use fork()Eric Andersen2002-02-211-0/+6
| | | | -Erik
* Rename __stdio_close_all to __stdio_flush_buffers. Eliminate anEric Andersen2002-02-181-2/+2
| | | | unnecessary variable
* Several little additions and cleanups. Add getw() and putw().Eric Andersen2002-02-023-1/+71
| | | | | | Add in some missing header files (netipx/ipx.h include/lastlog.h include/sgtty.h include/sys/perm.h) -Erik
* Don't waste space warning about tempnam()Eric Andersen2002-01-171-1/+0
|
* Support tmpfile64 (just a weak for tmpfile)Eric Andersen2002-01-061-1/+4
| | | | -Erik
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-193-8/+9
|
* Add missing ctermid. Also add putc and getc (in case they getEric Andersen2001-11-213-2/+58
| | | | | undefined which is a valid thing to do) -Erik
* This commit makes large file support actually work (when enabled inEric Andersen2001-10-172-17/+31
| | | | | the config file). I've tested this and it works for me. -Erik
* Fix nasty behavior difference from glibc -- also fixes getline()Eric Andersen2001-09-301-3/+2
| | | | -Erik
* Update to accomodate the header file changesEric Andersen2001-09-273-0/+3
|
* Fix fseek behavior.Manuel Novoa III2001-09-251-2/+3
|
* Fix goofy formattingEric Andersen2001-08-282-4/+4
|
* Use "stdin", "stdout", and "stderr", not "_stdin", "_stdout", andEric Andersen2001-08-241-10/+10
| | | | | "_stderr", since this is what gcc and libgcc expect... -Erik
* Add the __fopen prototype, since I pulled it from stdio.hEric Andersen2001-08-241-0/+4
|
* Add in changes from philipc@lineo:David McCullough2001-08-091-12/+15
| | | | | | | | | | | | | | | Fix three bugs and bring into line with glibc: 1. The first character read using getc() was being ignored if it was EOF. Normally this is okay because the next getc() returns EOF as well, but for sscanf, this was causing us to skip the null terminator and start scanning whatever happened to be next in memory. 2. %s, %c, and %[ formats now return -1 if EOF is reached before any characters are read, instead of 0. This was causing an infinite loop in diald. 3. Default to base 10 for %i fields if not prefix modifier present.
* Oops... left in a debugging line.Manuel Novoa III2001-07-281-1/+0
|
* Back out the changes to _uClibc_fread and loop in fread() if incomplete, toManuel Novoa III2001-07-281-22/+21
| | | | | | | | | | avoid problems with fgets on tty streams. I actually did some testing this time. ;-) Note: there is a difference in behavior between glibc and uClibc here regarding fread() on a tty stream. glibc's fread() seems to return after reading all _available_ data even if not at end-of-file, while uClibc's fread() continues reading until all requested or eof or error. The latter behavior seems correct w.r.t. the standards.
* Yes... the previous "fix" was broken too... the result of careless cuttingManuel Novoa III2001-07-261-1/+1
| | | | and pasting while pressed for time. I haven't checked this one either. :-(
* Ok... the fix wasn't quite so straightforward. Hopefully this will do it.Manuel Novoa III2001-07-251-0/+3
|
* Fix fread bug reported by Vodz. The fix is straightforward, but I haven'tManuel Novoa III2001-07-251-11/+13
| | | | tested it (lack of time).
* Fix printf so that %p outputs "(nil)" for (void *) 0, to match glibc behavior.Manuel Novoa III2001-06-131-11/+20
|
* Fix printf handling of %p to prepend "0x" since output is in hex.Manuel Novoa III2001-06-131-0/+1
| | | | | Note: glibc output for (void *)0 is "(nil)" while uClibc output is "0". Does anyone have a preference?
* Commit _uClibc_fread bug fix (with minor edit) posted by Johan Adolfsson ↵Manuel Novoa III2001-06-071-0/+4
| | | | <johan.adolfsson@axis.com>.
* Cleanup some stupid warningsEric Andersen2001-05-311-0/+1
|
* Add comment about scanf pushback behavior and glibc difference.Manuel Novoa III2001-05-211-0/+11
|
* Add in tempnam()Eric Andersen2001-05-172-1/+49
|
* Ok, this should finish off my massive ro-organization. The sourceEric Andersen2001-05-121-2/+1
| | | | | | | | | tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik
* Fix fwrite return value bug reported by Matthias Kilian ↵Manuel Novoa III2001-05-071-1/+2
| | | | <kili@outback.escape.de>.
* A couple of printf fixes from Johan Adolfsson (johan.adolfsson@axis.com).Manuel Novoa III2001-05-071-23/+31
|
* Be really sneaky and use GNU ld special stuff so that whenever folksEric Andersen2001-04-251-0/+1
| | | | | | use the unsafe gets, they will get a warning from the linker. muahahaha. This method will soon be applied to fork() w/o an mmu etc... -Erik
* Update temp file handling and use a single function to do allEric Andersen2001-04-184-87/+116
| | | | | the heavy lifting (most of the heavy lifting stolen from glibc, but reduced a bit).
* Fix include/errno.h to not use kernel header, and instead use bits/errno.h.Eric Andersen2001-04-064-12/+12
| | | | | | | 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
* Bug fix from Peter Kjellerstedt <Peter.Kjellerstedt@axis.com>.Manuel Novoa III2001-03-231-0/+7
|
* Since Erik apparently wants def/undef vs def 1/0...Manuel Novoa III2001-03-192-34/+34
|
* Test for Config features using features.h.Manuel Novoa III2001-03-183-62/+46
|
* Fix fdopen mode-compatibility test and errno setting.Manuel Novoa III2001-03-171-1/+8
|
* Fix bug with %c... takes care of bug reported with busybox ps.Manuel Novoa III2001-03-151-3/+6
|
* New version of scanf, with floating point support.Manuel Novoa III2001-03-131-378/+545
|
* Delete a stray character that hopped into the file...Manuel Novoa III2001-03-131-1/+1
|
* Hack long long support into scanf. For now, will fail for unsigned long longsManuel Novoa III2001-03-122-4/+24
| | | | | that are greater that long long max, but works well enough to support interface in busybox. Just a temporary measure until scanf.c is rewritten.
* Fix a bad assertion test.Manuel Novoa III2001-03-071-1/+2
|
* Fix a couple of bugs: check mode is legal; open file and check success beforeManuel Novoa III2001-03-031-25/+45
| | | | calling vfork.
* Stupid buglet fix. Don't trash FILE bufstart if buffer allocation fails.Manuel Novoa III2001-03-011-11/+4
|
* Fix a buglet regarding floating point output for ?nprintf functions.Manuel Novoa III2001-02-281-1/+2
|
* stdio mostly rewritten... passes lots of tests now.Manuel Novoa III2001-02-274-459/+542
| | | | printf now supports long double, plus some bug fixes.
* Fix a couple of bugs in _fopen and fclose, plus change a few internals.Manuel Novoa III2001-02-192-60/+83
|
* Lots of stdio cleanups. Several bug fixes, addition of a number of functionsManuel Novoa III2001-02-194-275/+384
| | | | | to supplement macros in stdio.h, change perror to use stdio package instead of "write". Also add back in weak stdio initialization for static lib case.