summaryrefslogtreecommitdiffstats
path: root/testutil/get-syscall-range.c
diff options
context:
space:
mode:
Diffstat (limited to 'testutil/get-syscall-range.c')
-rw-r--r--testutil/get-syscall-range.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/testutil/get-syscall-range.c b/testutil/get-syscall-range.c
new file mode 100644
index 0000000..9f26b8e
--- /dev/null
+++ b/testutil/get-syscall-range.c
@@ -0,0 +1,41 @@
+/* See LICENSE file for copyright and license details. */
+#include "../libsyscalls.h"
+
+#include <stddef.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+
+int
+main(int argc, char *argv[])
+{
+ enum libsyscalls_os os;
+ enum libsyscalls_arch arch;
+ long long int min, max;
+ enum libsyscalls_error err;
+
+ (void) argc;
+
+ os = (enum libsyscalls_os)atoi(argv[1]);
+ arch = (enum libsyscalls_arch)atoi(argv[2]);
+
+ err = libsyscalls_get_syscall_range(os, arch, &min, &max);
+ if (err == LIBSYSCALLS_E_OSNOSUP || err == LIBSYSCALLS_E_ARCHNOSUP) {
+ printf("min: x\n");
+ printf("max: x\n");
+ return 0;
+ } else if (err) {
+ fprintf(stderr, "test-get-syscall-range %s %s: ", argv[3], argv[4]);
+ libsyscalls_perror(NULL, err);
+ return 1;
+ }
+
+ printf("min: %lli\n", min);
+ printf("max: %lli\n", max);
+
+ if (fflush(stdout) || fclose(stdout)) {
+ perror(NULL);
+ return 1;
+ }
+ return 0;
+}