blob: 31582d851d375c6e527d9a5f4c7612e5d9d711e2 [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;
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<handle<channel>> directories;
};