From 8ac8a5863d0c4ce068fd27d934726db03eee0b07 Mon Sep 17 00:00:00 2001 From: nsz Date: Tue, 27 Sep 2011 09:34:27 +0200 Subject: [PATCH] update tables --- tab_c99.html | 2 +- tab_posix.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tab_c99.html b/tab_c99.html index 22cb754..3ca3f62 100644 --- a/tab_c99.html +++ b/tab_c99.html @@ -1,5 +1,5 @@

musl vs c99 api

-

commit

commit c11d1e696723f41d7873332e51fb6858b417fa5f
Date: Sun Sep 25 21:14:40 2011 -0400

revert previous change in cond var waiter move

using swap has a race condition: the waiters must be added to the
mutex waiter count *before* they are taken off the cond var waiter
count, or wake events can be lost. +

commit

commit 7e14ed1360c65b78c3ad1fc4fafea13e30067478
Date: Mon Sep 26 18:56:56 2011 -0400

fix ctype macros to cast argument to (unsigned) first

issue reported by nsz, but it's actually not just pedantic. the
functions can take input of any arithmetic type, including floating
point, and the behavior needs to be as if the conversion implicit in
the function call took place.

legend

table

muslc99
statussymdeclnameheaderprotosection
missing  NDEBUGassert.h B.1 Diagnostics diff --git a/tab_posix.html b/tab_posix.html index c5a3469..121b5bc 100644 --- a/tab_posix.html +++ b/tab_posix.html @@ -1,5 +1,5 @@

musl vs posix api

-

commit

commit c11d1e696723f41d7873332e51fb6858b417fa5f
Date: Sun Sep 25 21:14:40 2011 -0400

revert previous change in cond var waiter move

using swap has a race condition: the waiters must be added to the
mutex waiter count *before* they are taken off the cond var waiter
count, or wake events can be lost. +

commit

commit 7e14ed1360c65b78c3ad1fc4fafea13e30067478
Date: Mon Sep 26 18:56:56 2011 -0400

fix ctype macros to cast argument to (unsigned) first

issue reported by nsz, but it's actually not just pedantic. the
functions can take input of any arithmetic type, including floating
point, and the behavior needs to be as if the conversion implicit in
the function call took place.

legend

  • status: musl implementation status summary
    • (empty) - implemented
    • nosym - prototype found in include files (see decl) but not in libc.a (see sym)
    • nodecl - symbol is in libc.a but not declared in a public header
    • missing - neither in include files (see decl) nor in libc.a (see sym)
  • sym: external symbol kind as found by `nm libc.a` (symbol kind only reported once)
    • C - symbol is common (uninitialized data)
    • D - symbol is in the initialized data section
    • R - symbol is in the read only data section
    • T - symbol is in the text section
    • V - weak object
    • W - weak symbol
  • decl: kind of declaration as found by `ctags -R include` (every occurance is reported)
    • d - macro definition
    • p - function prototype
    • x - external and forward variable declaration

(STREAMS and posix_trace* apis are excluded)

table

muslposix
statussymdeclnameheaderoptiondesc
  d FD_CLR sys/select.h pselect, select - synchronous I/O multiplexing -- 2.20.1