summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)AuthorLines
2012-12-06fix names of ipc_perm __key/__seq elementsRich Felker-6/+2
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.
2012-12-06fix F_DUPFD_CLOEXEC being defined twicerofl0r-1/+0
2012-12-06fixup for fcntl.h changesrofl0r-16/+15
2012-12-06add personality syscallrofl0r-0/+6
2012-12-06add sigandset and sigorset (needed for qemu)rofl0r-0/+3
2012-12-06add struct msgbuf to sys/msg.hrofl0r-0/+7
2012-12-06unistd.h: fix wrong type for gid_t argumentrofl0r-1/+1
the prototype is defined with const gid_t* rather than const gid_t[]. it was already correctly defined in grp.h.
2012-12-06ipc.h: fix gnu aliases for key and seq in struct ipc_permrofl0r-2/+4
the macro was the wrong way round, additionally GNU defines __ prefixed versions, which are used by qemu.
2012-12-06add obsolete futimesat()rofl0r-0/+1
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.
2012-12-06fcntl.h: add some linux-specific F_ macrosrofl0r-0/+17
thankfully these are all generic across archs. the DN_ macros are for usage with F_NOTIFY.
2012-12-06tcp.h: add SOL_TCP, analoguous to udp.hrofl0r-0/+2
2012-12-05fix inefficiency of math.h isless, etc. macrosRich Felker-15/+30
previously, everything was going through an intermediate conversion to long double, which caused the extern __fpclassifyl function to get invoked, preventing virtually all optimizations of these operations. with the new code, tests on constant float or double arguments compile to a constant 0 or 1, and tests on non-constant expressions are efficient. I may later add support for __builtin versions on compilers that support them.
2012-12-05add scsi headers scsi.h and sg.hRich Felker-0/+279
due to some historical oddity, these are considered libc headers rather than kernel headers. the kernel used to provide them too, but it seems modern kernels do not install them, so let's just do the easiest thing and provide them. stripped-down versions provided by John Spencer.
2012-12-05use __builtin_offsetof to implement offsetof when possibleRich Felker-0/+4
apparently recent gcc versions have intentionally broken the traditional definition by treating it as a non-constant expression. the traditional definition may also be problematic for c++ programs.
2012-12-03add _ALL_SOURCE as an alias for _GNU_SOURCE/enable-everythingRich Felker-0/+4
reportedly this is a semi-common practice among some BSDs and a few other systems, and will improve application compatibility.
2012-12-03feature test macros: make _GNU_SOURCE enable everythingRich Felker-18/+4
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.
2012-12-02fix a couple issues in the inttypes.h PRI/SCN macrosRich Felker-22/+25
most importantly, the format/scan macros for the [u]int_fast16_t and [u]int_fast32_t types were defined incorrectly assuming these types would match the native word/pointer size. this is incorrect on any 64-bit system; the "fast" types for 16- and 32-bit integers are simply int. another issue which was "only a warning" (despite being UB) is that the choice of "l" versus "ll" was incorrect for 64-bit types on 64-bit machines. while it would "work" to always use "long long" for 64-bit types, we use "long" on 64-bit machines to match what glibc does and what the ABI documents recommend. the macro definitions were probably right in very old versions of musl, but became wrong when we aligned most closely with the 'standard' ABI. checking UINTPTR_MAX is an easy way to get the system wordsize without pulling in new headers. finally, the useless __PRIPTR macro to allow the underlying type of [u]intptr_t to vary has been removed. we are using "long" on all targets, and thankfully this matches what glibc does, so I do not envision ever needing to change it. thus, the "l" has just been incorporated directly in the strings.
2012-11-30provide NSIG under _BSD_SOURCE (default) as well as _GNU_SOURCERich Felker-1/+4
this fixes a regression related to the changes made to bits/signal.h between 0.9.7 and 0.9.8 that broke some (non-portable) software.
2012-11-27fix some restrict-qualifier mismatches in newly added interfacesRich Felker-2/+2
these should have little/no practical impact but they're needed for strict conformance.
2012-11-26fix eventfd and inotify nonblock/cloexec flags to match arch valuesRich Felker-4/+6
2012-11-26fix missing limits when only _BSD_SOURCE is definedRich Felker-1/+1
the missing check did not affect the default profile, since it has both _XOPEN_SOURCE and _BSD_SOURCE defined, but it did break programs which explicitly define _BSD_SOURCE, causing it to be the only feature test macro present.
2012-11-25fixup mcontext stuff to expost gregset_t/fpregset_t as appropriateRich Felker-2/+3
2012-11-25make sys/procfs.h mostly work on most archsRich Felker-18/+0
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.
2012-11-21add back NSIG, removed from powerpc in last commit, but for all archsRich Felker-0/+1
unlike the previous definition, NSIG/_NSIG is supposed to be one more than the highest signal number. adding this will allow simplifying libc-internal code that makes signal-related syscalls, which can be done as a later step. some apps might use it too; while this usage is questionable, it's at least not insane.
2012-11-18fix breakage from introducing bits header for sys/io.hRich Felker-0/+3
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.
2012-11-18add port io functions to sys/io.hRich Felker-2/+3
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.
2012-11-18fcntl.h: O_SEARCH was missing for powerpcrofl0r-0/+4
put some macros that do not differ between architectures in the main header and remove from bits. restructure mips header so it has the same structure as the others.
2012-11-17add cleaned-up sys/mtio.hRich Felker-0/+188
this is mostly junk, but a few programs with tape-drive support unconditionally include it, and it might be useful.
2012-11-17add stub versions of some missing optional pthread interfacesRich Felker-0/+5
priority inheritance is not yet supported, and priority protection probably will not be supported ever unless there's serious demand for it (it's a fairly heavy-weight feature). per-thread cpu clocks would be nice to have, but to my knowledge linux is still not capable of supporting them. glibc fakes them by using the _process_ cpu-time clock and subtracting the thread creation time, which gives seriously incorrect semantics (worse than not supporting the feature at all), so until there's a way to do it right, it will remain as a stub that always fails.
2012-11-15disable SO_REUSEPORT in sys/socket.hRich Felker-1/+1
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.
2012-11-13complex: add C11 CMPLX macros and replace cpack with themSzabolcs Nagy-0/+9
2012-11-11report support of TPS option in unistd.h and sysconfRich Felker-0/+1
also update another newish feature in sysconf, stackaddr
2012-11-11add support for thread scheduling (POSIX TPS option)Rich Felker-0/+12
linux's sched_* syscalls actually implement the TPS (thread scheduling) functionality, not the PS (process scheduling) functionality which the sched_* functions are supposed to have. omitting support for the PS option (and having the sched_* interfaces fail with ENOSYS rather than omitting them, since some broken software assumes they exist) seems to be the only conforming way to do this on linux.
2012-11-05fix numerous mips abi constant definition mismatchesRich Felker-0/+7
2012-11-04mips cache flush/ctl syscall support and headerRich Felker-0/+22
2012-11-01avoid breakage if somebody wrongly defines empty feature test macrosRich Felker-3/+3
2012-10-31add dl_iterate_phdr interfaceRich Felker-0/+27
patches by Alex Caudill (npx). the dynamic-linked version is almost identical to the final submitted patch; I just added a couple missing lines for saving the phdr address when the dynamic linker is invoked directly to run a program, and removed a couple to avoid introducing another unnecessary type. the static-linked version is based on npx's draft. it could use some improvements which are contingent on the startup code saving some additional information for later use.
2012-10-21fix issues with wait constants in stdlib.hRich Felker-6/+5
the W* namespace is not reserved, so the nonstandard ones must be moved under extension features. also WNOHANG and WUNTRACED were missing.
2012-10-21complex: make _Complex_I work with gcc -std=c99 -pedantic-errorsnsz-0/+4
2012-10-17assert() is supposed to have type voidRich Felker-1/+1
2012-10-15add memmem function (gnu extension)Rich Felker-0/+1
based on strstr. passes gnulib tests and a few quick checks of my own.
2012-10-15microblaze TLS relocation support, completely untestedRich Felker-1/+8
2012-09-30add getopt reset supportRich Felker-1/+1
based on proposed patches by Daniel Cegiełka, with minor changes: - use a weak symbol for optreset so it doesn't clash with namespace - also reset optpos (position in multi-option arg like -lR) - also make getopt_long support reset
2012-09-30define some _POSIX_* macros that were omitted; required for XSI conformanceRich Felker-0/+3
2012-09-29always expose accept4Rich Felker-4/+1
it will be in the next version of POSIX
2012-09-29always expose dup3 and pipe2Rich Felker-2/+2
they will be in the next version of POSIX
2012-09-29microblaze portRich Felker-0/+24
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.
2012-09-21LFS64 alias for prlimitRich Felker-0/+1
issue reported/requested by Justin Cormack
2012-09-16add clock_adjtime, remap_file_pages, and syncfs syscall wrappersRich Felker-0/+11
patch by Justin Cormack, with slight modification
2012-09-15fix stupid bug in updating of O_ACCMODE for O_SEARCH supportRich Felker-1/+1
this could cause major bugs, and warrants a fix release right away.