| Commit message (Expand) | Author | Age | Files | Lines |
| * | wait.h: add linux specific, thread-related waitpid() flags•••these flags are needed in order to be able to handle lwp id's
which the kernel returns after clone() calls for new threads
via ptrace(PTRACE_GETEVENTMSG).
fortunately, they're the same for all archs and in the reserved
namespace.
| rofl0r | 2013-01-04 | 1 | -0/+4 |
| * | align EPOLL_* flags with fcntl O_* flag definitions, which vary by arch•••the old definitions were wrong on some archs. actually, EPOLL_NONBLOCK
probably should not even be defined; it is not accepted by the kernel
and it's not clear to me whether it has any use at all, even if it did
work. this issue should be revisited at some point, but I'm leaving it
in place for now in case some applications reference it.
| Rich Felker | 2012-12-27 | 1 | -2/+3 |
| * | socket.h: add SO_(SND/RCV)BUFFORCE to generic block | rofl0r | 2012-12-19 | 1 | -0/+2 |
| * | add some missing macros to sys/shm.h•••these are not specified in the standard, but in the reserved
namespace, so there is no problem with defining them unconditionally.
| Rich Felker | 2012-12-15 | 1 | -0/+3 |
| * | add missing flags in sys/timerfd.h | Rich Felker | 2012-12-13 | 1 | -0/+6 |
| * | fix regressions in app compatibility from previous sys/ipc.h changes•••despite glibc using __key and __seq rather than key and seq, some
applications, notably busybox, assume the names are key and seq unless
glibc is being used. and the names key and seq are really the ones
that _should_ be exposed when not attempting to present a
standards-conforming namespace; apps should not be using names that
begin with double-underscore. thus, the optimal fix is to use key and
seq as the actual names of the members when in bsd/gnu source profile,
and define macros for __key and __seq that redirect to plain key and
seq.
| Rich Felker | 2012-12-10 | 1 | -0/+5 |
| * | syscall() declaration belongs in unistd.h, not sys/syscall.h•••traditionally, both BSD and GNU systems have it this way.
sys/syscall.h is purely syscall number macros. presently glibc exposes
the syscall declaration in unistd.h only with _GNU_SOURCE, but that
does not reflect historical practice.
| Rich Felker | 2012-12-10 | 1 | -10/+0 |
| * | fix names of ipc_perm __key/__seq elements•••previously the names were exposed as key/seq with _GNU_SOURCE and
__ipc_perm_key/__ipc_perm/seq otherwise, whereas glibc always uses
__key and __seq for the names. thus, the old behavior never matched
glibc, and the new behavior always does, regardless of feature test
macros.
for now, i'm leaving the renaming here in sys/ipc.h where it's easy to
change globally for all archs, in case something turns out to be
wrong, but eventually the names could just be incorporated directly
into the bits headers for each arch and the renaming removed.
| Rich Felker | 2012-12-06 | 1 | -6/+2 |
| * | add personality syscall | rofl0r | 2012-12-06 | 1 | -0/+6 |
| * | add struct msgbuf to sys/msg.h | rofl0r | 2012-12-06 | 1 | -0/+7 |
| * | ipc.h: fix gnu aliases for key and seq in struct ipc_perm•••the macro was the wrong way round, additionally GNU defines
__ prefixed versions, which are used by qemu.
| rofl0r | 2012-12-06 | 1 | -2/+4 |
| * | add obsolete futimesat()•••this function is obsolete, however it's available as a syscall
and as such qemu userspace emulation tries to forward it to the
host kernel.
| rofl0r | 2012-12-06 | 1 | -0/+1 |
| * | feature test macros: make _GNU_SOURCE enable everything•••previously, a few BSD features were enabled only by _BSD_SOURCE, not
by _GNU_SOURCE. since _BSD_SOURCE is default in the absence of other
feature test macros, this made adding _GNU_SOURCE to a project not a
purely additive feature test macro; it actually caused some features
to be suppressed.
most of the changes made by this patch actually bring musl in closer
alignment with the glibc behavior for _GNU_SOURCE. the only exceptions
are the added visibility of functions like strlcpy which were BSD-only
due to being disliked/rejected by glibc maintainers. here, I feel the
consistency of having _GNU_SOURCE mean "everything", and especially
the property of it being purely additive, are more valuable than
hiding functions which glibc does not have.
| Rich Felker | 2012-12-03 | 1 | -4/+1 |
| * | fix eventfd and inotify nonblock/cloexec flags to match arch values | Rich Felker | 2012-11-26 | 2 | -4/+6 |
| * | make sys/procfs.h mostly work on most archs•••these structures are purely for use by trace/debug tools and tools
working with core files. the definition of fpregset_t, which was
previously here, has been removed because it was wrong; fpregset_t
should be the type used in mcontext_t, not the type used in
ptrace/core stuff.
| Rich Felker | 2012-11-25 | 1 | -18/+0 |
| * | fix breakage from introducing bits header for sys/io.h•••apparently some other archs have sys/io.h and should not break just
because they don't have the x86 port io functions. provide a blank
bits/io.h everywhere for now.
| Rich Felker | 2012-11-18 | 1 | -0/+3 |
| * | add port io functions to sys/io.h•••based on proposal by Isaac Dunham. nonexistance of bits/io.h will
cause inclusion of sys/io.h to produce an error on archs that are not
supposed to have it. this is probably the desired behavior, but the
error message may be a bit unusual.
| Rich Felker | 2012-11-18 | 1 | -2/+3 |
| * | add cleaned-up sys/mtio.h•••this is mostly junk, but a few programs with tape-drive support
unconditionally include it, and it might be useful.
| Rich Felker | 2012-11-17 | 1 | -0/+188 |
| * | disable SO_REUSEPORT in sys/socket.h•••although a number is reserved for it, this option is not implemented
on Linux and does not work. defining it causes some applications to
use it, and subsequently break due to its failure.
| Rich Felker | 2012-11-15 | 1 | -1/+1 |
| * | fix numerous mips abi constant definition mismatches | Rich Felker | 2012-11-05 | 1 | -0/+7 |
| * | mips cache flush/ctl syscall support and header | Rich Felker | 2012-11-04 | 1 | -0/+22 |
| * | fix issues with wait constants in stdlib.h•••the W* namespace is not reserved, so the nonstandard ones must be
moved under extension features. also WNOHANG and WUNTRACED were
missing.
| Rich Felker | 2012-10-21 | 1 | -2/+0 |
| * | always expose accept4•••it will be in the next version of POSIX
| Rich Felker | 2012-09-29 | 1 | -4/+1 |
| * | LFS64 alias for prlimit•••issue reported/requested by Justin Cormack
| Rich Felker | 2012-09-21 | 1 | -0/+1 |
| * | add clock_adjtime, remap_file_pages, and syncfs syscall wrappers•••patch by Justin Cormack, with slight modification
| Rich Felker | 2012-09-16 | 2 | -0/+10 |
| * | mincore syscall wrapper | Rich Felker | 2012-09-09 | 1 | -0/+1 |
| * | fix up lfs64 junk for preadv/pwritev | Rich Felker | 2012-09-09 | 1 | -0/+5 |
| * | add preadv/pwritev syscall wrappers | Rich Felker | 2012-09-09 | 1 | -0/+9 |
| * | syscall organization overhaul•••now public syscall.h only exposes __NR_* and SYS_* constants and the
variadic syscall function. no macros or inline functions, no
__syscall_ret or other internal details, no 16-/32-bit legacy syscall
renaming, etc. this logic has all been moved to src/internal/syscall.h
with the arch-specific parts in arch/$(ARCH)/syscall_arch.h, and the
amount of arch-specific stuff has been reduced to a minimum.
changes still need to be reviewed/double-checked. minimal testing on
i386 and mips has already been performed.
| Rich Felker | 2012-09-08 | 1 | -18/+0 |
| * | add acct, accept4, setns, and dup3 syscalls (linux extensions)•••based on patch by Justin Cormack
| Rich Felker | 2012-09-08 | 2 | -0/+79 |
| * | remove all remaining redundant __restrict/__inline/_Noreturn defs | Rich Felker | 2012-09-08 | 3 | -13/+3 |
| * | sysmacros major/minor: result should have type unsigned int, not dev_t | Rich Felker | 2012-09-08 | 1 | -2/+2 |
| * | add timerfd interfaces (untested) | Rich Felker | 2012-09-08 | 1 | -0/+18 |
| * | default features: make musl usable without feature test macros•••the old behavior of exposing nothing except plain ISO C can be
obtained by defining __STRICT_ANSI__ or using a compiler option (such
as -std=c99) that predefines it. the new default featureset is POSIX
with XSI plus _BSD_SOURCE. any explicit feature test macros will
inhibit the default.
installation docs have also been updated to reflect this change.
| Rich Felker | 2012-09-07 | 14 | -15/+24 |
| * | use restrict everywhere it's required by c99 and/or posix 2008•••to deal with the fact that the public headers may be used with pre-c99
compilers, __restrict is used in place of restrict, and defined
appropriately for any supported compiler. we also avoid the form
[restrict] since older versions of gcc rejected it due to a bug in the
original c99 standard, and instead use the form *restrict.
| Rich Felker | 2012-09-06 | 5 | -13/+43 |
| * | avoid "inline" in public headers for strict c89 compatibility•••while musl itself requires a c99 compiler, some applications insist on
being compiled with c89 compilers, and use of "inline" in the headers
was breaking them. much of this had been avoided already by just
skipping the inline keyword in pre-c99 compilers or modes, but this
new unified solution is cleaner and may/should result in better code
generation in the default gcc configuration.
| Rich Felker | 2012-09-02 | 1 | -0/+4 |
| * | type exposure fixes in sys/sem.h | Rich Felker | 2012-08-24 | 1 | -2/+5 |
| * | add missing xattr functions•••not sure why these were originally omitted..
| Rich Felker | 2012-08-15 | 1 | -0/+3 |
| * | fix socket.h on mips•••why does mips have to be gratuitously incompatible in every possible
imaginable way?
| Rich Felker | 2012-08-05 | 1 | -0/+3 |
| * | add ioperm/iopl syscalls•••based on patches by orc and Isaac Dunham, with some fixes. sys/io.h
exists and contains prototypes for these functions regardless of
whether the target arch has them; this is a bit unorthodox but I don't
think it will break anything. the function definitions do not exist
unless the appropriate SYS_* syscall number macro is defined, which
should make sure configure scripts looking for these functions don't
find them on other systems.
presently, sys/io.h does not have the inb/outb/etc. port io
macros/functions. I'd be surprised if ioperm/iopl are useful without
them, so they probably need to be added at some point in appropriate
bits/io.h files...
| Rich Felker | 2012-07-23 | 1 | -0/+13 |
| * | add extended attributes syscalls•••based on patch by orc and Isaac Dunham, with some fixes.
| Rich Felker | 2012-07-23 | 1 | -0/+27 |
| * | workaround another sendmsg kernel bug on 64-bit machines•••the kernel wrongly expects the cmsg length field to be size_t instead
of socklen_t. in order to work around the issue, we have to impose a
length limit and copy to a local buffer. the length limit should be
more than sufficient for any real-world use; these headers are only
used for passing file descriptors and permissions between processes
over unix sockets.
| Rich Felker | 2012-07-12 | 1 | -7/+0 |
| * | add process_vm_readv and process_vm_writev syscall wrappers•••based on a patch submitted by Kristian L. <email@thexception.net>
| Rich Felker | 2012-06-23 | 1 | -0/+9 |
| * | header file fixes: multiple include guard consistency and correctness•••one file was reusing another file's macro name, and many had
inconsistent underscores and application of SYS prefix, etc.
patch by Szabolcs Nagy (nsz)
| Rich Felker | 2012-06-15 | 3 | -6/+6 |
| * | fix sysinfo, try 2. it seems to work this time. | Rich Felker | 2012-06-07 | 1 | -10/+10 |
| * | sysinfo struct was utter nonsense; no idea where it came from.•••this broke the busybox "free" utility (memory reporting) and possibly
other things like uptime.
| Rich Felker | 2012-06-07 | 1 | -4/+3 |
| * | _GNU_SOURCE is supposed to imply _LARGEFILE64_SOURCE•••this is ugly and stupid, but now that the *64 symbol names exist, a
lot of broken GNU software detects them in configure, then either
breaks during build due to missing off64_t definition, or attempts to
compile without function declarations/prototypes. "fixing" it here is
easier than telling everyone to add yet another feature test macro to
their builds.
| Rich Felker | 2012-06-04 | 7 | -7/+7 |
| * | various header cleanups, some related to _BSD_SOURCE addition•••there is no reason to avoid multiple identical macro definitions; this
is perfectly legal C, and even with the maximal warning options
enabled, gcc does not issue any warning for it.
| Rich Felker | 2012-05-22 | 1 | -4/+4 |
| * | support _BSD_SOURCE feature test macro•••patch by Isaac Dunham. matched closely (maybe not exact) to glibc's
idea of what _BSD_SOURCE should make visible.
| Rich Felker | 2012-05-22 | 5 | -5/+9 |
| * | fix missing parens in bit op macros (param.h) | Rich Felker | 2012-05-10 | 1 | -1/+1 |