aboutgitcodelistschat:MatrixIRC
path: root/cooker/calls.h
diff options
context:
space:
mode:
Diffstat (limited to 'cooker/calls.h')
-rw-r--r--cooker/calls.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/cooker/calls.h b/cooker/calls.h
new file mode 100644
index 0000000..5d46e14
--- /dev/null
+++ b/cooker/calls.h
@@ -0,0 +1,23 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later
+ * Copyright 2023 Red Hat GmbH
+ * Author: Stefano Brivio <sbrivio@redhat.com>
+ */
+
+#ifndef CALLS_H
+#define CALLS_H
+
+/**
+ * struct call - Description of one known system call
+ * @number: Number from __NR_ macros, architecture dependent
+ * @name: Name for use in recipes
+ * @args: NULL-terminated array of argument descriptions
+ */
+struct call {
+ long number;
+ const char *name;
+ struct arg *args;
+};
+
+extern struct call *call_sets[];
+
+#endif /* CALLS_H */