From 75eae5a7ef67781b73f2b9038416542c7ea0612c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 7 Sep 2022 16:37:17 +0200 Subject: executor: test extension points Test that extension points keep stable interface and work. --- executor/common_ext.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'executor/common_ext.h') diff --git a/executor/common_ext.h b/executor/common_ext.h index 6485852ef..22361649f 100644 --- a/executor/common_ext.h +++ b/executor/common_ext.h @@ -2,8 +2,10 @@ // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. // This file is included into executor and C reproducers and can be used to add -// non-mainline pseudo-syscalls w/o changing any other files. -// These syscalls should start with syz_ext_. +// non-mainline pseudo-syscalls and to provide some other extension points +// w/o changing any other files. See common_ext_example.h for an example implementation. + +// Pseudo-syscalls defined in this file should start with syz_ext_. // This file can also define SYZ_HAVE_SETUP_EXT to 1 and provide // void setup_ext() function that will be called during VM setup. -- cgit mrf-deployment