Make quick fix for aarch64 build

This commit is contained in:
Justine Tunney 2023-07-30 15:06:28 -07:00
parent c8aa33e0e2
commit 712b1aab3c
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ void *Torturer(void *arg) {
}
for (i = 0; i < FDS; ++i) {
ASSERT_EQ(2, write(fd[i], "hi", 2));
if (!fork()) _Exit(0);
if (!vfork()) _Exit(0);
wait(0);
}
for (i = 0; i < FDS; ++i) {