diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-09-20 21:18:36 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-09-20 21:19:29 +0200 |
| commit | 8cb7d3dcfcbe11a6d5682743816409d1c8e8f6a0 (patch) | |
| tree | 75e6dd62ae61ce7986cf4e0e04e9954586033635 /executor/syscalls_fuchsia.h | |
| parent | d606e60dfe3d50499812f7d740dae6e727fa9f76 (diff) | |
all: initial support for fuchsia
Nothing works, but builds.
Update #191
Diffstat (limited to 'executor/syscalls_fuchsia.h')
| -rw-r--r-- | executor/syscalls_fuchsia.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/executor/syscalls_fuchsia.h b/executor/syscalls_fuchsia.h new file mode 100644 index 000000000..6919aec79 --- /dev/null +++ b/executor/syscalls_fuchsia.h @@ -0,0 +1,26 @@ +// AUTOGENERATED FILE + +struct call_t { + const char* name; + int sys_nr; +}; + +#if defined(__x86_64__) || 0 +#define GOARCH "amd64" +#define SYZ_REVISION "d65b9adb4853817be6f471df44fc8347ebf6dfc6" + +static call_t syscalls[] = { + {"mx_time_get", 0}, + +}; +#endif + +#if defined(__aarch64__) || 0 +#define GOARCH "arm64" +#define SYZ_REVISION "bd2655e6d85f1fecceb1648649e1ad5adda81dc8" + +static call_t syscalls[] = { + {"mx_time_get", 0}, + +}; +#endif |
