From 9fe4bdc5f1037a409e82299f36117030114c7b94 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 20 Jul 2018 20:26:05 +0200 Subject: executor: overhaul Make as much code as possible shared between all OSes. In particular main is now common across all OSes. Make more code shared between executor and csource (in particular, loop function and threaded execution logic). Also make loop and threaded logic shared across all OSes. Make more posix/unix code shared across OSes (e.g. signal handling, pthread creation, etc). Plus other changes along similar lines. Also support test OS in executor (based on portable posix) and add 4 arches that cover all execution modes (fork server/no fork server, shmem/no shmem). This change paves way for testing of executor code and allows to preserve consistency across OSes and executor/csource. --- docs/syscall_descriptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/syscall_descriptions.md') diff --git a/docs/syscall_descriptions.md b/docs/syscall_descriptions.md index 3ad777e2e..3658ed9c7 100644 --- a/docs/syscall_descriptions.md +++ b/docs/syscall_descriptions.md @@ -29,7 +29,7 @@ For example, [sys/linux/tty.txt](/sys/linux/tty.txt) is translated into [sys/lin The second step is generation of Go code for syzkaller. This step uses syscall descriptions and the const files generated during the first step. -You can see a result in [sys/linux/gen/amd64.go](/sys/linux/gen/amd64.go) and in [executor/syscalls_linux.h](/executor/syscalls_linux.h). +You can see a result in [sys/linux/gen/amd64.go](/sys/linux/gen/amd64.go) and in [executor/syscalls.h](/executor/syscalls.h). ## Describing new system calls -- cgit mrf-deployment