| Commit message (Expand) | Author | Age | Files | Lines |
| * | fix broken FD_* macros on 64-bit targets•••1 is too small if int is 32-bit but unsigned long is 64-bit. be
explicit and use 1UL.
| Rich Felker | 2011-08-27 | 1 | -3/+3 |
| * | add missing signalfd flags | Rich Felker | 2011-07-09 | 1 | -0/+3 |
| * | copy-paste error in prctl.h | Rich Felker | 2011-06-18 | 1 | -1/+1 |
| * | fix some struct padding to match LSB/glibc ABI where it may be helpful | Rich Felker | 2011-06-16 | 1 | -2/+4 |
| * | eventfd syscall wrapper and read/write wrappers | Rich Felker | 2011-05-08 | 1 | -0/+25 |
| * | move wait.h macros out of bits. they do not vary. | Rich Felker | 2011-04-21 | 1 | -2/+22 |
| * | include signal.h to avoid thorny __sigcontext/sigcontext issues•••this is explicitly allowed by POSIX
| Rich Felker | 2011-04-21 | 1 | -2/+2 |
| * | add useless type fd_mask. it's in the reserved namespace. | Rich Felker | 2011-04-14 | 1 | -0/+2 |
| * | numerous fixes to sysv ipc•••some of these definitions were just plain wrong, others based on
outdated ancient "non-64" versions of the kernel interface.
as much as possible has now been moved out of bits/*
these changes break abi (the old abi for these functions was wrong),
but since they were not working anyway it can hardly matter.
| Rich Felker | 2011-04-13 | 3 | -13/+55 |
| * | fix typos on RLIM_NLIMITS, remove _GNU_SOURCE test for it•••RLIM_* is in the reserved namespace for this header
| Rich Felker | 2011-04-13 | 1 | -3/+1 |
| * | fix and cleanup suseconds_t/timeval stuff (broken on 64-bit)•••trash in the upper 32 bits was making the kernel sleep forever in
select on 64-bit systems.
| Rich Felker | 2011-04-13 | 2 | -9/+1 |
| * | add some traditional aliases to stat.h | Rich Felker | 2011-04-12 | 1 | -0/+6 |
| * | add missing rlimit macros | Rich Felker | 2011-04-12 | 1 | -0/+8 |
| * | cleanup types stuff in headers, fix missing u_int*_t in sys/types.h | Rich Felker | 2011-04-11 | 1 | -7/+9 |
| * | add some ugly legacy type names in sys/types.h (u_char etc.) | Rich Felker | 2011-04-10 | 1 | -0/+8 |
| * | add legacy BSD-style timer*() macros in sys/time.h | Rich Felker | 2011-04-10 | 1 | -0/+10 |
| * | add missing UTIME_* macros in sys/stat.h | Rich Felker | 2011-04-10 | 1 | -0/+3 |
| * | fix typo in sys/msg.h | Rich Felker | 2011-04-06 | 1 | -1/+1 |
| * | fix incorrect (and conflicting on LP64 archs) types for sysv ipc msgq functions | Rich Felker | 2011-04-06 | 1 | -1/+1 |
| * | alternate name for syslog.h | Rich Felker | 2011-04-05 | 1 | -0/+1 |
| * | syscall overhaul part two - unify public and internal syscall interface•••with this patch, the syscallN() functions are no longer needed; a
variadic syscall() macro allows syscalls with anywhere from 0 to 6
arguments to be made with a single macro name. also, manually casting
each non-integer argument with (long) is no longer necessary; the
casts are hidden in the macros.
some source files which depended on being able to define the old macro
SYSCALL_RETURNS_ERRNO have been modified to directly use __syscall()
instead of syscall(). references to SYSCALL_SIGSET_SIZE and SYSCALL_LL
have also been changed.
x86_64 has not been tested, and may need a follow-up commit to fix any
minor bugs/oversights.
| Rich Felker | 2011-03-19 | 1 | -1/+17 |
| * | add some ioctl stuff to sys/mount.h | Rich Felker | 2011-03-19 | 1 | -0/+18 |
| * | overhaul syscall interface•••this commit shuffles around the location of syscall definitions so
that we can make a syscall() library function with both SYS_* and
__NR_* style syscall names available to user applications, provides
the syscall() library function, and optimizes the code that performs
the actual inline syscalls in the library itself.
previously on i386 when built as PIC (shared library), syscalls were
incurring bus lock (lock prefix) overhead at entry and exit, due to
the way the ebx register was being loaded (xchg instruction with a
memory operand). now the xchg takes place between two registers.
further cleanup to arch/$(ARCH)/syscall.h is planned.
| Rich Felker | 2011-03-19 | 1 | -0/+16 |
| * | various legacy and linux-specific stuff•••this commit is part of an effort to make more of busybox work
out-of-the-box.
| Rich Felker | 2011-03-18 | 2 | -0/+107 |
| * | remove some old cruft from sys/types.h | Rich Felker | 2011-03-14 | 1 | -1/+0 |
| * | fcntl.h should make availabel the mode constants from sys/stat.h•••also remove some legacy nonsense that crept in.
| Rich Felker | 2011-03-08 | 1 | -8/+2 |
| * | namespace cleanup in sys/mman.h | Rich Felker | 2011-03-03 | 1 | -1/+3 |
| * | implement futimens and utimensat | Rich Felker | 2011-02-27 | 1 | -0/+3 |
| * | cleanup namespace in sys/time.h | Rich Felker | 2011-02-27 | 1 | -4/+5 |
| * | include sys/sysmacros.h from sys/types.h when _GNU_SOURCE is defined | Rich Felker | 2011-02-20 | 1 | -0/+1 |
| * | fix typo in inotify structure | Rich Felker | 2011-02-20 | 1 | -1/+1 |
| * | make sys/param.h not depend on PATH_MAX and NAME_MAX•••this is a nonstandard header used only by backwards programs, but for
some reason it's extremely popular. the recent namespace cleanup fixes
broke it, because PATH_MAX and NAME_MAX will not be defined unless an
approriate feature test macro has been defined. moreover, it's too
late to just #define _GNU_SOURCE in param.h, since limits.h may have
already been included.
let's just hard-code standard values and be done with it.
| Rich Felker | 2011-02-20 | 1 | -2/+2 |
| * | add syscall wrappers for inotify | Rich Felker | 2011-02-19 | 1 | -0/+55 |
| * | prototype wait3 and wait4 | Rich Felker | 2011-02-19 | 2 | -3/+6 |
| * | add portable lchown (trivial to support and a few ancient things want it..) | Rich Felker | 2011-02-17 | 1 | -0/+3 |
| * | reorganize pthread data structures and move the definitions to alltypes.h•••this allows sys/types.h to provide the pthread types, as required by
POSIX. this design also facilitates forcing ABI-compatible sizes in
the arch-specific alltypes.h, while eliminating the need for
developers changing the internals of the pthread types to poke around
with arch-specific headers they may not be able to test.
| Rich Felker | 2011-02-17 | 1 | -0/+14 |
| * | extensive header cleanup for standards conformance & correctness•••thanks to Peter Mazinger (psm) for pointing many of these issues out
and submitting a patch on which this commit is loosely based
| Rich Felker | 2011-02-14 | 4 | -3/+8 |
| * | initial check-in, version 0.5.0 | Rich Felker | 2011-02-12 | 42 | -0/+1209 |