From 06ece2ca663d0565d9e4cd932c4c2d86767a5396 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 12 Jun 2018 14:05:02 +0200 Subject: pkg/host: rework host feature detection/setup Currently host feature detection/setup code is spread across platform-independent fuzzer code, pkg/host, pkg/ipc and executor. Move this all into pkg/host and show readable info about features on manager start. Fixes #46 --- pkg/host/host_fuchsia.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'pkg/host/host_fuchsia.go') diff --git a/pkg/host/host_fuchsia.go b/pkg/host/host_fuchsia.go index 87143d768..ea6a92700 100644 --- a/pkg/host/host_fuchsia.go +++ b/pkg/host/host_fuchsia.go @@ -12,7 +12,3 @@ import ( func isSupported(c *prog.Syscall, sandbox string) (bool, string) { return true, "" } - -func EnableFaultInjection() error { - return nil -} -- cgit mrf-deployment