blob: 244bef6bd0b8f0c6887c3289fa9277fedf1bc043 [file] [log] [blame]
// Copyright 2020 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.policy;
@discoverable
closed protocol ExitController {
// Instructs the protocol provider to terminate their process with the
// provided code.
strict Exit(struct {
code int32;
});
};