From 06bf8101debe879447d0ef3a7a5b84cb11fa5acf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 2 Jun 2024 11:58:29 +0200 Subject: executor: remove noshmem mode All OSes we have now support shmem. Support for Fuchia/Starnix/Windows wasn't implemented, but generally they support shared memory. Remove all of the complexity and code associated with noshmem mode. If/when we revive these OSes, it's easier to properly implement shmem mode for them. --- executor/executor_test.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'executor/executor_test.h') diff --git a/executor/executor_test.h b/executor/executor_test.h index 09bfacfdb..dd133e422 100644 --- a/executor/executor_test.h +++ b/executor/executor_test.h @@ -83,7 +83,6 @@ static void cover_mmap(cover_t* cov) cov->pc_offset = 0; } -#if SYZ_EXECUTOR_USES_SHMEM static void cover_unprotect(cover_t* cov) { } @@ -92,4 +91,3 @@ static bool use_cover_edges(uint64 pc) { return true; } -#endif -- cgit mrf-deployment