Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ppoll: get NULL from stddef.h | Bernhard Reutner-Fischer | 2009-11-20 | 1 | -3/+2 |
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | trim Experimentally off and uncommented hidden | Bernhard Reutner-Fischer | 2009-09-18 | 1 | -1/+0 |
| | | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | ppoll: switch to INLINE_SYSCALL() to match glibc | Mike Frysinger | 2009-07-20 | 1 | -11/+2 |
| | | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | fix ppoll. we forgot to pass 5th parameter to the syscall | Denis Vlasenko | 2009-01-28 | 1 | -14/+17 |
| | |||||
* | Last portion of libc_hidden_proto removal. | Denis Vlasenko | 2008-11-20 | 1 | -1/+1 |
| | | | | | Appears to build fine (several .configs tried) | ||||
* | - tidy up inline: | Bernhard Reutner-Fischer | 2008-10-24 | 1 | -1/+1 |
| | | | | ldso and syscalls are __always_inline (the latter would need more cleanup) | ||||
* | - remove superfluous ';'. No objcode changes. | Bernhard Reutner-Fischer | 2008-10-22 | 1 | -1/+1 |
| | |||||
* | - adds several config-options to allow for turning off certain features | Bernhard Reutner-Fischer | 2008-06-03 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Bernd Schmidt writes: The following patch is needed for libc to be able to ↵ | Mike Frysinger | 2007-03-18 | 1 | -0/+3 |
| | | | | emulate poll with ppoll. | ||||
* | Should be __sigset_t instead of sigset_t. | Khem Raj | 2007-03-01 | 1 | -2/+2 |
| | |||||
* | add support for ppoll() and emulate poll() with it when __NR_poll does not exist | Mike Frysinger | 2007-02-28 | 1 | -0/+47 |