Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-20 | Introduce and use small[u]int type. Changes in size: | Denis Vlasenko | |
- 79 0 28 107 6b libc/inet/rpc/create_xid.o + 76 0 25 101 65 libc/inet/rpc/create_xid.o - 126 0 4 130 82 libc/misc/assert/__assert.o + 123 0 1 124 7c libc/misc/assert/__assert.o - 648 4 24 676 2a4 libc/misc/internals/__uClibc_main.o + 645 4 21 670 29e libc/misc/internals/__uClibc_main.o - 230 0 4 234 ea libc/stdlib/abort.o + 216 0 1 217 d9 libc/stdlib/abort.o - 129 0 4 133 85 libc/termios/tcgetsid.o + 126 0 1 127 7f libc/termios/tcgetsid.o | |||
2008-05-20 | - remove old-style definitions. No object-code changes. | Bernhard Reutner-Fischer | |
2008-05-19 | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | |
in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's. | |||
2007-05-02 | Nickolai Zeldovich writes: | Mike Frysinger | |
Currently, tcgetpgrp() in uClibc uses an int to store a PID (fetched via ioctl TIOCGPGRP). This causes problems on platforms where pid_t is defined to be larger (e.g., uint64_t). Other functions in termios, such as tcgetsid() and tcsetpgrp(), already pass a pid_t to ioctl(), so the following patch does the same in tcgetpgrp() as well. | |||
2006-07-05 | fixup my copyright notice, trim stale remnants of older notices which | Eric Andersen | |
I had clearly run search/replace on that were cluttering things up. | |||
2006-06-21 | Added a missing baud rate (614400) to the speeds[] table. | Peter Kjellerstedt | |
2006-03-23 | Mark some functions as BSD only | Peter S. Mazinger | |
2006-02-22 | * Allow baud rates above 115200 again. | Peter Kjellerstedt | |
* Added a couple of esoteric CRIS specific baud rates. | |||
2006-02-13 | libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵ | Peter S. Mazinger | |
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 | |||
2006-02-13 | Add back the 115200 limit | Peter S. Mazinger | |
2006-01-29 | remove unneeded duplicate sid definition | Mike Frysinger | |
2006-01-29 | sync with glibc | Mike Frysinger | |
2006-01-26 | Get rid of missing prototype warnings | Peter S. Mazinger | |
2006-01-24 | Convert all the strong_aliases to weak that are cancelable in libpthread | 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 | s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now ↵ | Peter S. Mazinger | |
see what libpthread will do ... | |||
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 | Convert all the rest, remove isxupper/isxlower, if someone objects, I'll add ↵ | Peter S. Mazinger | |
it back | |||
2005-12-13 | Convert all users of earlier hiddens | Peter S. Mazinger | |
2005-12-13 | Convert internal users of chmod/*stat*, minimize change for __strsep | Peter S. Mazinger | |
2005-12-10 | fix a warning | Mike Frysinger | |
2005-12-08 | Use internal versions | Peter S. Mazinger | |
2005-12-07 | Hide more | Peter S. Mazinger | |
2005-12-01 | Hide mostly used functions | Peter S. Mazinger | |
2005-11-27 | Hide some of mem* and str* | Peter S. Mazinger | |
2005-11-21 | Remove TOPDIR | Peter S. Mazinger | |
2005-11-01 | Only because of multi sources I had to touch up these and add code duplication | Peter S. Mazinger | |
2005-11-01 | Remove last unused references to libc-a-pic-, we use only the lists in ↵ | Peter S. Mazinger | |
libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC | |||
2005-10-29 | Replace all Makefiles for new build infrastucture | Peter S. Mazinger | |
2005-10-25 | All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵ | Peter S. Mazinger | |
archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally. | |||
2005-10-12 | Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵ | Peter S. Mazinger | |
objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much. | |||
2005-01-25 | merge parallel build support | Mike Frysinger | |
2004-07-15 | Cleanup a few of the more egregiously broken sysconf values to | Eric Andersen | |
actually match reality. In particular, _SC_GETPW_R_SIZE_MAX and _SC_GETGR_R_SIZE_MAX were causing us problems with programs such as libglib, since they were always returning -1, which is a bit smaller than the actual passwd and group max buffer sizes. -Erik | |||
2004-01-13 | Add another devfs subdir to the list of checked subdirs. | Manuel Novoa III | |
2004-01-02 | Kept the same approach, but rewrote the code for the most part. | Manuel Novoa III | |
Fixed some minor issues plus (as I recall) one SUSv3 errno case. | |||
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM). | |||
2003-09-06 | Running ltp 20030905 showed that tcsendbreak was broken. | Eric Andersen | |
This fixes it. | |||
2003-09-01 | Greg Nutt writes: | Eric Andersen | |
Attached is a patch for a bug I found in libc/termios/ttyname.c. Essentially the length of the buffer is calculated incorrectly in a strncpy call and then the null terminator is placed on the byte after the buffer. This probably cause some very strange behavior on my system (it ended up setting malloc's heapsize to zero) but may be innocuous on other systems. | |||
2002-11-05 | A patch from Danny Lepage so that we do not setting on symlinks | Eric Andersen | |
when looking for a device match, and instead keep looking till we find the correct device. | |||
2002-07-16 | Fix from "Gerhard Uttenthaler" <uttenthaler@ems-wuensche.com> so | Eric Andersen | |
that cfsetspeed would actually be compiled in. | |||
2002-07-06 | Stupid filesystems like cramfs fail to guarantee that st_ino and st_dev | Eric Andersen | |
uniquely identify a file, contrary to SuSv3, so we cannot be quite so precise as to require an exact match. Settle for something less... Grumble... -Erik | |||
2002-06-19 | Oops. Looks like I broke ttyname. Fix it. | Eric Andersen | |
-Erik | |||
2002-06-15 | Implement ttyname_r | Eric Andersen | |
-Erik | |||
2002-02-13 | A number of naming updates in preparation for adding in | Eric Andersen | |
proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me. | |||
2002-01-09 | Fixup broken termios stuff. No, really this time. | Eric Andersen | |
-Erik | |||
2002-01-09 | Rework termios wrapping code to try and do the right thing. | Eric Andersen | |
-Erik | |||
2001-12-19 | Update my email address. I am no longer andersen@lineo.com | Eric Andersen | |
2001-09-27 | Update to accomodate the header file changes | Eric Andersen | |
2001-07-13 | PowerPC has a different kernel interface for termios. Grrr... | David Schleef | |
2001-06-13 | Fix a really stupid bug with ttyname, thanks to a patch from | Eric Andersen | |
Stefan Soucek <ssoucek@coactive.com> |