Add high performance threaded webserver example

This commit is contained in:
Justine Tunney 2022-05-14 07:44:02 -07:00
parent 80b211e314
commit 178a6da4b9
2 changed files with 284 additions and 4 deletions

View file

@ -110,10 +110,6 @@ TEST(rand64, testThreadSafety_doesntProduceIdenticalValues) {
EXPECT_NE(A[i], A[j], "i=%d j=%d", i, j);
}
}
for (i = 0; i < THREADS; ++i) {
tkill(tid[i], SIGKILL);
errno = 0;
}
for (i = 0; i < THREADS; ++i) {
EXPECT_SYS(0, 0, munmap(stacks[i], GetStackSize()));
}