NameDateSize

..01-Oct-201890

channel.cppH A D01-Oct-2018812

debuglog.cppH A D01-Oct-2018444

event.cppH A D01-Oct-2018390

eventpair.cppH A D01-Oct-2018759

fifo.cppH A D01-Oct-2018767

guest.cppH A D01-Oct-2018654

include/H01-Oct-20183

interrupt.cppH A D01-Oct-2018609

job.cppH A D01-Oct-2018894

log.cppH A D01-Oct-2018402

port.cppH A D01-Oct-2018386

process.cppH A D01-Oct-20181.3 KiB

README.mdH A D01-Oct-2018580

resource.cppH A D01-Oct-2018820

rules.mkH A D01-Oct-2018916

socket.cppH A D01-Oct-2018735

thread.cppH A D01-Oct-2018651

timer.cppH A D01-Oct-2018421

vcpu.cppH A D01-Oct-2018592

vmar.cppH A D01-Oct-2018661

vmo.cppH A D01-Oct-2018403

README.md

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