From 5fec822cebc16c132c42083b8ecef991241fefef Mon Sep 17 00:00:00 2001 From: QGrain Date: Wed, 13 Mar 2024 22:23:00 +0800 Subject: [PATCH] change to a proper translation for async notice --- sources/syzkaller/program_syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/syzkaller/program_syntax.md b/sources/syzkaller/program_syntax.md index 8df35b2..789e11e 100644 --- a/sources/syzkaller/program_syntax.md +++ b/sources/syzkaller/program_syntax.md @@ -95,6 +95,6 @@ close(r0) ``` 设置 `async` 标志时,请注意以下注意事项: -* 只能在线程模式下被执行的程序(如必须给 `syz-executor` 传入 `-threaded` 标志的程序)。 +* 带有 `async` 属性的程序只能在线程模式下执行(即必须将 `-threaded` 标志传递给 `syz-executor`)。 * 每个带有 `async` 属性的调用都在单独的线程中执行,并且有一个可用线程数量上限(`kMaxThreads = 16`)。 * 如果一个带有 `async` 属性的调用生成了资源,请记住其他的调用可能会将其作为输入。如果届时生成资源的调用尚未执行完毕,`syz-executor` 将会将 0 作为参数传入依赖该资源的调用。 \ No newline at end of file