blob: 7d2603bc928e74efc572e6de27b462bd338f3391 [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;
type FlatNamespace = resource struct {
/// The mount point for each of the directories below.
///
/// For example, ["/pkg", "/svc"].
paths vector<string>;
/// The directories mounted at each path in the namespace.
directories vector<zx.handle:CHANNEL>;
};