Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-11 | - whitespace fixes | Bernhard Reutner-Fischer | |
2008-08-27 | - remove a couple of duplicate includes | Bernhard Reutner-Fischer | |
2008-07-23 | - trim any trailing whitespace | Bernhard Reutner-Fischer | |
2008-07-14 | - improve UCLIBC_LINUX_SPECIFIC | Bernhard Reutner-Fischer | |
compile-tested only, fixes libc/misc/statfs/fstatfs64.c:29: error: 'fstatfs' undeclared here (not in a function) | |||
2008-06-16 | - fix build error | Bernhard Reutner-Fischer | |
brk.c:(.text.__GI_sysconf+0xd4): undefined reference to `clock_getres' | |||
2008-06-12 | Include sys/syscall.h since we are checking for __NR_clock_getres. | Peter Kjellerstedt | |
2008-06-12 | Revert revision 19345 plus libc_hidden_proto for __uc_malloc. | Bernd Schmidt | |
2008-06-06 | shrink getopt a bit by using smallints. Run tested (busybox testsuite) | Denis Vlasenko | |
text data bss dec hex filename - 2403 12 40 2455 997 libc/unistd/getopt.o + 2388 12 28 2428 97c libc/unistd/getopt.o | |||
2008-06-05 | Revert revision 22027 which totally broke getopt. | Bernd Schmidt | |
2008-06-03 | - adds several config-options to allow for turning off certain features | Bernhard Reutner-Fischer | |
like o UCLIBC_HAS_GNU_ERROR o UCLIBC_HAS_BSD_ERR o UCLIBC_HAS_PTY o UCLIBC_HAS_GETPT (1) o UCLIBC_SYSCALL_STUBS o UCLIBC_SYSCALL_STUB_WARNING o UCLIBC_LINUX_SPECIFIC (2) o UCLIBC_BSD_SPECIFIC (3) o UCLIBC_NTP_LEGACY (4) o UCLIBC_SV4_DEPRECATED (5) o UCLIBC_HAVE_REALTIME (6) o UCLIBC_HAVE_ADVANCED_REALTIME (7) o UCLIBC_HAVE_EPOLL (8) o UCLIBC_HAVE_XATTR (9) o UCLIBC_HAVE_PROFILING (10) (1) make non-standard getpt optional and implement standard posix_openpt (2) fstatfs(), inotify_*(), ioperm(), iopl(), madvise(), modify_ldt(), personality() ppoll(), setresuid() (3) mincore(), getdomainname(), setdomainname() (4) ntp_adjtime(), ntp_gettime() aliases (5) ustat() [use statfs(2) in your code instead] (6) All marked as "(REALTIME)" in SUSv3 (7) All marked as "(ADVANCED REALTIME)" in SUSv3 (8) epoll_create(), epoll_ctl(), epoll_wait() (9) all Extended Attributes (10) helpers for gcc's -finstrument-functions - Fixes _dl_exit() - Implements sleep(3) for !UCLIBC_HAVE_REALTIME - Implements usleep(3) for !UCLIBC_HAVE_REALTIME - adds #warning about incorrect posix_fadvise{,64}() - removes unused and unwanted uselib() Net outcome is that an allnoconfig with HAVE_SHARED is now about 88k instead of formerly 130k. | |||
2008-06-01 | add missing includes of unistd.h for smallint usage | Denis Vlasenko | |
remove a few duplicate includes of unistd.h | |||
2008-05-30 | - Avoid warning about undefined preprocessor token. No obj-code changes. | Bernhard Reutner-Fischer | |
2008-05-20 | replace "if (p) free(p)" by just "free(p)" - free(NULL) is safe. | Denis Vlasenko | |
2008-05-20 | getopt: do not needlessly use static structure. | Denis Vlasenko | |
Reorder structure members and change some of them into smallints to reduce bss and text: text data bss dec hex filename - 2403 12 40 2455 997 libc/unistd/getopt.o + 2252 12 0 2264 8d8 libc/unistd/getopt.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. | |||
2008-02-12 | add hidden_proto's for __uc_malloc | Denis Vlasenko | |
(patch by Bernd Schmidt <bernds_cb1 at t-online.de>) | |||
2008-01-23 | give execlp() its own cache on no-mmu to avoid recursive cache fighting | Mike Frysinger | |
2008-01-08 | fix memory corruption on no-mmu from doing multiple execls where earlier ↵ | Mike Frysinger | |
execls fail by simply not releasing the memory reserved for the arguments of children processes | |||
2007-12-22 | plug a memory leak when using execl* functions on no-mmu | Mike Frysinger | |
2007-12-22 | add hidden defs for execv/execlp for completeness | Mike Frysinger | |
2007-07-30 | make utent.c, getpass.c use __uc_malloc | Denis Vlasenko | |
2007-07-18 | execXp should go to next PATH dir on any error except ENOEXEC, | Denis Vlasenko | |
not just on ENOENT (in particular, on EPERM). At least glibc does so. Fixing this. | |||
2007-05-02 | Daniel Jacobowitz: sleep()/usleep() relies on nanosleep() being a cancellation | Mike Frysinger | |
point but the files have "libc_hidden_proto(nanosleep)" which means it always calls the libc.so version, never the wrapped version in libpthread.so that's a cancellation point. | |||
2007-04-13 | Patch by Ricard Wanderlof <ricardw at axis dot com>: | Peter Kjellerstedt | |
* Add configurable buffer sizes for getpwnam() and getgrnam(). The default buffer size is, as before, 256 (glibc seems to use 1024 by default). | |||
2007-01-22 | Recognize _SC_MONOTONIC_CLOCK in sysconf() even if __NR_clock_getres | Peter Kjellerstedt | |
is not defined. | |||
2007-01-21 | - repair misplaced #endif that got introduced in r17410. Fixes compilation. | Bernhard Reutner-Fischer | |
2007-01-20 | The case for _SC_MONOTONIC_CLOCK should only exist if 'clock_getres' does. | "Steven J. Hill" | |
2006-09-22 | Added support for sysconf(_SC_MONOTONIC_CLOCK). | Peter Kjellerstedt | |
2006-07-05 | replace my @debian.org addr with @uclibc.org. Fixup license on | Eric Andersen | |
readelf and ldd to again state that they are GPLv2 | |||
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-07-05 | sync with glibc | Mike Frysinger | |
2006-07-05 | update license | Mike Frysinger | |
2006-05-30 | Make execle() and chown() available again (corrects commit 15179). | Peter Kjellerstedt | |
2006-05-26 | Amir Shalem writes: | Mike Frysinger | |
there are missing prototypes for chown() and execle() in uClibc-snapshot. I'm attaching a patch to add the missing prototypes. the error I'm getting without the patch: AR cr libc/libc_so.a LD libuClibc-0.9.28.so libc/libc_so.a(grantpt.os): In function `__unix_grantpt': grantpt.c:(.text+0x108): undefined reference to `__GI_chown' grantpt.c:(.text+0x1ae): undefined reference to `__GI_execle' | |||
2006-03-23 | Correct typo | Peter S. Mazinger | |
2006-03-23 | Mark some functions as BSD only | Peter S. Mazinger | |
2006-03-22 | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | |
2006-03-22 | Mark some functions as GNU, provide missing hidden memmem, remove ↵ | Peter S. Mazinger | |
_ISOC99/XOPEN_SOURCE | |||
2006-03-21 | stderr does not have hidden version anymore, disable it's use | Peter S. Mazinger | |
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-03-03 | Rename getopt_long-susv3 to -simple | Peter S. Mazinger | |
2006-03-03 | Upstream update | Peter S. Mazinger | |
2006-02-27 | Add Rich Felker's getopt_long to be used in conjunction w/ the SuSv3 getopt | Peter S. Mazinger | |
2006-02-27 | Add Rich Felker's getsubopt, smaller then the glibc copied one | Peter S. Mazinger | |
2006-02-27 | Add hidden version for susv3 getopt | Peter S. Mazinger | |
2006-02-18 | tweak the idea between having a MMU and actually using it | Mike Frysinger | |
2006-02-17 | Take getopt from glibc, disable -W foo support as in the earlier version, ↵ | Peter S. Mazinger | |
size shrink 5%, hope it solves option parsing w/ busybox tar | |||
2006-02-17 | Remove hidden_data_def for opt* | Peter S. Mazinger | |
2006-02-17 | Sync w/ glibc, no size change | Peter S. Mazinger | |