blob: 9c1d5406f4a6324e3e47f7c06d92221e8eaeb0f1 [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;
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;
};