README.md
1This library provides fake replacements for the BTI and PMT syscalls for the
2purpose of testing driver code in an unprivileged environment. It works by
3defining strong symbols for the following system calls:
4
5- **zx_object_get_info**()
6- **zx_bti_pin**()
7- **zx_bti_release_quarantine**().
8- **zx_pmt_unpin**()
9
10The library exposes methods for creating and destroying fake BTI "handles" that
11are compatible with the fake BTI syscalls. It is not safe to use any other
12handle operations on the fake BTI and PMT handles.
13