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