1# The C++ zx library
2
3The intention of this library is to provide an idiomatic C++ interface
4to using Zircon handles and syscalls. This library provides type
5safety and move semantics on top of the C calls.
6
7This library does not do more than that. In particular, thread and
8process creation involve a lot more than simply creating the
9underlying kernel structures. For thread creation you likely want to
10use the libc (or libc++ etc.) calls, and for process creation the
11launchpad APIs.
12
13This library is usable both within the Zircon repo as well as the
14general Fuchsia gn build.
15