blob: 7412ddbb70a7b5554912eca724c8cc026dda2ed3 [file] [log] [blame]
// Copyright 2019 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 test.processbuilder;
struct EnvVar {
string key;
string value;
};
[Discoverable]
protocol Util {
GetArguments() -> (vector<string> args);
GetEnvironment() -> (vector<EnvVar> vars);
DumpNamespace() -> (string contents);
ReadFile(string path) -> (string contents);
GetLifecycleKoid() -> (uint64 koid);
};