1 // Copyright 2018 The Fuchsia Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // A helper library for connecting to the trace manager via fdio.
6 
7 #pragma once
8 
9 #include <zircon/types.h>
10 
11 __BEGIN_CDECLS
12 
13 zx_status_t trace_provider_connect_with_fdio(zx_handle_t* out_client);
14 
15 __END_CDECLS
16