From f89294761cb8f89e11aecb58ee27629fcfeafbc3 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 18 Oct 2017 12:00:16 +0200 Subject: executor: use forkserver for freebsd Use forkserver and shmem for freebsd. This greatly improves speed. Also introduce fallback coverage signal based on unique (syscall+errno) pairs. --- executor/executor.h | 1 + 1 file changed, 1 insertion(+) (limited to 'executor/executor.h') diff --git a/executor/executor.h b/executor/executor.h index 1933c6cef..f3f0eb53a 100644 --- a/executor/executor.h +++ b/executor/executor.h @@ -616,6 +616,7 @@ void execute_call(thread_t* th) } cover_reset(th); + errno = 0; th->res = execute_syscall(call, th->args[0], th->args[1], th->args[2], th->args[3], th->args[4], th->args[5], th->args[6], th->args[7], th->args[8]); -- cgit mrf-deployment