• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..21-Aug-2025-

include/lib/sync/21-Aug-2025-

README.md A D21-Aug-2025432 76

completion.c A D21-Aug-20252.7 KiB7345

condition.cpp A D21-Aug-20251.6 KiB5036

mutex.c A D21-Aug-20254.8 KiB12578

rules.mk A D21-Aug-2025674 2714

README.md

1This library is used directly in libc.  So it cannot use most high-level
2facilities.  In particular, <zircon/assert.h> is not permitted because it
3uses printf.  It's also important to restrict the (non-hidden) symbols
4used to only standard C symbols and the reserved namespace (external
5linkage symbols starting with `_`).  The Zircon system call API can be
6used freely, but only via the `_zx_` names and not the `zx_` names.
7