blob: 11bff7ba41c28d0c2d16c07bfea020a4cd401cca [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.sys;
using zx;
resource struct FlatNamespace {
/// The mount point for each of the directories below.
///
/// For example, ["/pkg", "/svc"].
vector<string> paths;
/// The directories mounted at each path in the namespace.
vector<zx.handle:CHANNEL> directories;
};