Name Date Size #Lines LOC

..--

img/H25-Apr-2025-

32-bit-abi.mdH A D25-Apr-20256.1 KiB12497

EINTR.mdH A D25-Apr-20254.1 KiB9271

NOTICEH A D25-Apr-202511.1 KiB204169

README.mdH A D25-Apr-20251.4 KiB3527

clang_fortify_anatomy.mdH A D25-Apr-202535.9 KiB841704

defines.mdH A D25-Apr-20253.4 KiB7354

elf-tls.mdH A D25-Apr-202541.8 KiB878676

fdsan.mdH A D25-Apr-202515.9 KiB379307

fdtrack.mdH A D25-Apr-20254.7 KiB9581

libc_assembler.mdH A D25-Apr-20257.2 KiB166126

mte.mdH A D25-Apr-202513.1 KiB245187

native_allocator.mdH A D25-Apr-202518.9 KiB413302

status.mdH A D25-Apr-202520.8 KiB441373

README.md

1# bionic documentation
2
3[bionic](https://en.wikipedia.org/wiki/Bionic_(software)) is Android's
4C library, math library, and dynamic linker.
5
6## User documentation
7
8* [Android bionic status](status.md) - where we are in terms of standards,
9  and what changed with each OS release.
10* [32-bit ABI bugs](32-bit-abi.md) - historical accidents we can never fix.
11* [`EINTR`](EINTR.md) - what is the `EINTR` failure,
12  and how can code deal with it?
13* [When to use which `#define`](defines.md) - how to choose between
14  `__ANDROID__` and `__BIONIC__` and all the other options for conditional
15  compilation.
16* [fdsan](fdsan.md) - bionic's file descriptor sanitizer,
17  which detects use-after-close() bugs.
18* [fdtrack](fdtrack.md) - bionic's file descriptor tracker,
19  which helps debug file descriptor leaks.
20
21## Maintainer documentation
22
23If you're trying to make changes to bionic _itself_, start with the
24[bionic maintainer documentation](../README.md).
25
26We also have more detail on several specific parts of the implementation:
27
28* [The anatomy of bionic's `_FORTIFY_SOURCE`](clang_fortify_anatomy.md) -
29  how does `_FORTIFY_SOURCE` work on bionic (primarily "with clang").
30* [Android ELF TLS](elf-tls.md) - details of bionic's ELF TLS implementation.
31* [Validating libc assembler](libc_assembler.md) - how to test changes to
32  libc assembler routines.
33* [Validating native allocator changes](native_allocator.md) - how to test
34  changes to the native allocator.
35