forked from vsrinivas/fuchsia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyscall.fidl
45 lines (33 loc) · 1.28 KB
/
syscall.fidl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// 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 zx;
[Transport = "Syscall"]
protocol syscall {
[testonly]
syscall_test_0() -> (status status);
[testonly,
test_category1]
syscall_test_1(int32 a) -> (status status);
[testonly,
test_category1]
syscall_test_2(int32 a, int32 b) -> (status status);
[testonly,
test_category2]
syscall_test_3(int32 a, int32 b, int32 c) -> (status status);
[testonly]
syscall_test_4(int32 a, int32 b, int32 c, int32 d) -> (status status);
[testonly]
syscall_test_5(int32 a, int32 b, int32 c, int32 d, int32 e) -> (status status);
[testonly]
syscall_test_6(int32 a, int32 b, int32 c, int32 d, int32 e, int32 f) -> (status status);
[testonly]
syscall_test_7(int32 a, int32 b, int32 c, int32 d, int32 e, int32 f, int32 g) -> (status status);
[testonly]
syscall_test_8(int32 a, int32 b, int32 c, int32 d, int32 e, int32 f, int32 g, int32 h)
-> (status status);
[testonly]
syscall_test_wrapper(int32 a, int32 b, int32 c) -> (status status);
[testonly]
syscall_test_handle_create(status return_value) -> (status status, handle:EVENT out);
};