You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rich Felker
b7cf71a190
add threads.h and needed per-arch types for mtx_t and cnd_t
based on patch by Jens Gustedt.
mtx_t and cnd_t are defined in such a way that they are formally
"compatible types" with pthread_mutex_t and pthread_cond_t,
respectively, when accessed from a different translation unit. this
makes it possible to implement the C11 functions using the pthread
functions (which will dereference them with the pthread types) without
having to use the same types, which would necessitate either namespace
violations (exposing pthread type names in threads.h) or incompatible
changes to the C++ name mangling ABI for the pthread types.
for the rest of the types, things are much simpler; using identical
types is possible without any namespace considerations.
12 years ago
..
alltypes.h.in
add threads.h and needed per-arch types for mtx_t and cnd_t
12 years ago
endian.h
PPC port cleaned up, static linking works well now.
14 years ago
errno.h
add missing EHWPOISON to bits/errno.h
14 years ago
fcntl.h
add O_TMPFILE flag, new in linux 3.11
13 years ago
fenv.h
add missing const on powerpc FE_DFL_ENV
14 years ago
float.h
fix the nominal type of LDBL_* limits on archs with ld64
13 years ago
io.h
fix breakage from introducing bits header for sys/io.h
14 years ago
ioctl.h
fix ioctl _IOR, _IOW, etc macros to avoid signed overflow (2<<30)
13 years ago
ipc.h
fix sysvipc structures on powerpc
12 years ago
limits.h
support configurable page size on mips, powerpc and microblaze
13 years ago
mman.h
add missing mmap options and madvices to bits/mman.h based on linux headers
14 years ago
msg.h
fix sysvipc structures on powerpc
12 years ago
posix.h
PPC port cleaned up, static linking works well now.
14 years ago
reg.h
PPC port cleaned up, static linking works well now.
14 years ago
resource.h
fix RLIMIT_ constants for mips
12 years ago
sem.h
fix sysvipc structures on powerpc
12 years ago
setjmp.h
change jmp_buf to share an underlying type and struct tag with sigjmp_buf
13 years ago
shm.h
fix sysvipc structures on powerpc
12 years ago
signal.h
fix signal.h breakage from moving stack_t to arch-specific bits
12 years ago
socket.h
fix socket.h struct msghdr member types on powerpc
12 years ago
stat.h
remove stat member aliases from ppc-specific bits/stat.h
14 years ago
statfs.h
PPC port cleaned up, static linking works well now.
14 years ago
stdarg.h
PPC port cleaned up, static linking works well now.
14 years ago
stdint.h
remove SIG_ATOMIC_MIN/MAX from stdint bits headers
13 years ago
syscall.h
add syscall numbers for the new renameat2 syscall
12 years ago
termios.h
fix namespace violations in termios.h, at least mostly
13 years ago
user.h
make sys/procfs.h mostly work on most archs
14 years ago