Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - remove a couple of duplicate includes | Bernhard Reutner-Fischer | 2008-08-27 | 2 | -4/+0 | |
| | ||||||
* | - trim any trailing whitespace | Bernhard Reutner-Fischer | 2008-07-23 | 6 | -12/+12 | |
| | ||||||
* | - improve UCLIBC_LINUX_SPECIFIC | Bernhard Reutner-Fischer | 2008-07-14 | 1 | -2/+2 | |
| | | | | | compile-tested only, fixes libc/misc/statfs/fstatfs64.c:29: error: 'fstatfs' undeclared here (not in a function) | |||||
* | - fix build error | Bernhard Reutner-Fischer | 2008-06-16 | 1 | -1/+1 | |
| | | | | brk.c:(.text.__GI_sysconf+0xd4): undefined reference to `clock_getres' | |||||
* | Include sys/syscall.h since we are checking for __NR_clock_getres. | Peter Kjellerstedt | 2008-06-12 | 1 | -0/+1 | |
| | ||||||
* | Revert revision 19345 plus libc_hidden_proto for __uc_malloc. | Bernd Schmidt | 2008-06-12 | 1 | -7/+2 | |
| | ||||||
* | shrink getopt a bit by using smallints. Run tested (busybox testsuite) | Denis Vlasenko | 2008-06-06 | 1 | -16/+18 | |
| | | | | | | | text data bss dec hex filename - 2403 12 40 2455 997 libc/unistd/getopt.o + 2388 12 28 2428 97c libc/unistd/getopt.o | |||||
* | Revert revision 22027 which totally broke getopt. | Bernd Schmidt | 2008-06-05 | 2 | -18/+20 | |
| | ||||||
* | - adds several config-options to allow for turning off certain features | Bernhard Reutner-Fischer | 2008-06-03 | 4 | -5/+89 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | add missing includes of unistd.h for smallint usage | Denis Vlasenko | 2008-06-01 | 1 | -1/+0 | |
| | | | | | remove a few duplicate includes of unistd.h | |||||
* | - Avoid warning about undefined preprocessor token. No obj-code changes. | Bernhard Reutner-Fischer | 2008-05-30 | 1 | -1/+1 | |
| | ||||||
* | replace "if (p) free(p)" by just "free(p)" - free(NULL) is safe. | Denis Vlasenko | 2008-05-20 | 1 | -7/+2 | |
| | ||||||
* | getopt: do not needlessly use static structure. | Denis Vlasenko | 2008-05-20 | 2 | -20/+18 | |
| | | | | | | | | | 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 | |||||
* | - remove old-style definitions. No object-code changes. | Bernhard Reutner-Fischer | 2008-05-20 | 1 | -3/+1 | |
| | ||||||
* | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | 2008-05-19 | 8 | -19/+19 | |
| | | | | | | | | | 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. | |||||
* | add hidden_proto's for __uc_malloc | Denis Vlasenko | 2008-02-12 | 1 | -0/+1 | |
| | | | | | (patch by Bernd Schmidt <bernds_cb1 at t-online.de>) | |||||
* | give execlp() its own cache on no-mmu to avoid recursive cache fighting | Mike Frysinger | 2008-01-23 | 1 | -37/+57 | |
| | ||||||
* | fix memory corruption on no-mmu from doing multiple execls where earlier ↵ | Mike Frysinger | 2008-01-08 | 1 | -10/+3 | |
| | | | | execls fail by simply not releasing the memory reserved for the arguments of children processes | |||||
* | plug a memory leak when using execl* functions on no-mmu | Mike Frysinger | 2007-12-22 | 1 | -9/+17 | |
| | ||||||
* | add hidden defs for execv/execlp for completeness | Mike Frysinger | 2007-12-22 | 1 | -0/+4 | |
| | ||||||
* | make utent.c, getpass.c use __uc_malloc | Denis Vlasenko | 2007-07-30 | 1 | -2/+6 | |
| | ||||||
* | execXp should go to next PATH dir on any error except ENOEXEC, | Denis Vlasenko | 2007-07-18 | 1 | -3/+3 | |
| | | | | | | not just on ENOENT (in particular, on EPERM). At least glibc does so. Fixing this. | |||||
* | Daniel Jacobowitz: sleep()/usleep() relies on nanosleep() being a cancellation | Mike Frysinger | 2007-05-02 | 2 | -2/+2 | |
| | | | | | | 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. | |||||
* | Patch by Ricard Wanderlof <ricardw at axis dot com>: | Peter Kjellerstedt | 2007-04-13 | 1 | -4/+2 | |
| | | | | | | * Add configurable buffer sizes for getpwnam() and getgrnam(). The default buffer size is, as before, 256 (glibc seems to use 1024 by default). | |||||
* | Recognize _SC_MONOTONIC_CLOCK in sysconf() even if __NR_clock_getres | Peter Kjellerstedt | 2007-01-22 | 1 | -2/+2 | |
| | | | | is not defined. | |||||
* | - repair misplaced #endif that got introduced in r17410. Fixes compilation. | Bernhard Reutner-Fischer | 2007-01-21 | 1 | -1/+1 | |
| | ||||||
* | The case for _SC_MONOTONIC_CLOCK should only exist if 'clock_getres' does. | "Steven J. Hill" | 2007-01-20 | 1 | -0/+2 | |
| | ||||||
* | Added support for sysconf(_SC_MONOTONIC_CLOCK). | Peter Kjellerstedt | 2006-09-22 | 1 | -0/+7 | |
| | ||||||
* | replace my @debian.org addr with @uclibc.org. Fixup license on | Eric Andersen | 2006-07-05 | 1 | -1/+1 | |
| | | | | readelf and ldd to again state that they are GPLv2 | |||||
* | fixup my copyright notice, trim stale remnants of older notices which | Eric Andersen | 2006-07-05 | 1 | -5/+2 | |
| | | | | I had clearly run search/replace on that were cluttering things up. | |||||
* | sync with glibc | Mike Frysinger | 2006-07-05 | 2 | -19/+20 | |
| | ||||||
* | update license | Mike Frysinger | 2006-07-05 | 3 | -40/+4 | |
| | ||||||
* | Make execle() and chown() available again (corrects commit 15179). | Peter Kjellerstedt | 2006-05-30 | 1 | -0/+1 | |
| | ||||||
* | Amir Shalem writes: | Mike Frysinger | 2006-05-26 | 1 | -0/+1 | |
| | | | | | | | | | | | | 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' | |||||
* | Correct typo | Peter S. Mazinger | 2006-03-23 | 1 | -1/+1 | |
| | ||||||
* | Mark some functions as BSD only | Peter S. Mazinger | 2006-03-23 | 3 | -0/+9 | |
| | ||||||
* | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | 2006-03-22 | 1 | -1/+1 | |
| | ||||||
* | Mark some functions as GNU, provide missing hidden memmem, remove ↵ | Peter S. Mazinger | 2006-03-22 | 1 | -1/+2 | |
| | | | | _ISOC99/XOPEN_SOURCE | |||||
* | stderr does not have hidden version anymore, disable it's use | Peter S. Mazinger | 2006-03-21 | 1 | -1/+0 | |
| | ||||||
* | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | 2006-03-10 | 3 | -4/+0 | |
| | | | | most of global data relocations are back | |||||
* | Rename getopt_long-susv3 to -simple | Peter S. Mazinger | 2006-03-03 | 2 | -2/+2 | |
| | ||||||
* | Upstream update | Peter S. Mazinger | 2006-03-03 | 1 | -2/+2 | |
| | ||||||
* | Add Rich Felker's getopt_long to be used in conjunction w/ the SuSv3 getopt | Peter S. Mazinger | 2006-02-27 | 2 | -1/+62 | |
| | ||||||
* | Add Rich Felker's getsubopt, smaller then the glibc copied one | Peter S. Mazinger | 2006-02-27 | 2 | -0/+39 | |
| | ||||||
* | Add hidden version for susv3 getopt | Peter S. Mazinger | 2006-02-27 | 1 | -0/+2 | |
| | ||||||
* | tweak the idea between having a MMU and actually using it | Mike Frysinger | 2006-02-18 | 2 | -2/+2 | |
| | ||||||
* | Take getopt from glibc, disable -W foo support as in the earlier version, ↵ | Peter S. Mazinger | 2006-02-17 | 2 | -495/+1014 | |
| | | | | size shrink 5%, hope it solves option parsing w/ busybox tar | |||||
* | Remove hidden_data_def for opt* | Peter S. Mazinger | 2006-02-17 | 2 | -16/+0 | |
| | ||||||
* | Sync w/ glibc, no size change | Peter S. Mazinger | 2006-02-17 | 1 | -4/+5 | |
| | ||||||
* | libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵ | Peter S. Mazinger | 2006-02-13 | 1 | -38/+17 | |
| | | | | 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 |