1 // Copyright 2018 syzkaller project authors. All rights reserved. 2 // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 3 cover_open(cover_t * cov)4static void cover_open(cover_t* cov) 5 { 6 } 7 cover_enable(cover_t * cov,bool collect_comps)8static void cover_enable(cover_t* cov, bool collect_comps) 9 { 10 } 11 cover_reset(cover_t * cov)12static void cover_reset(cover_t* cov) 13 { 14 } 15 cover_collect(cover_t * cov)16static void cover_collect(cover_t* cov) 17 { 18 } 19 20 #if SYZ_EXECUTOR_USES_SHMEM cover_check(uint32 pc)21static bool cover_check(uint32 pc) 22 { 23 return true; 24 } 25 cover_check(uint64 pc)26static bool cover_check(uint64 pc) 27 { 28 return true; 29 } 30 #endif 31