summaryrefslogtreecommitdiff
path: root/netbsd
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2019-01-30 23:31:05 +0100
committerRobert Swiecki <robert@swiecki.net>2019-01-30 23:31:05 +0100
commit9e30850dfacf5aa2cca3ecc242301c54118419b2 (patch)
treecee6417d42bf4cb72b5feefd98302947de059909 /netbsd
parentdc9aaefa46186747d20fa09930394c8d0c5389ea (diff)
downloadhonggfuzz-9e30850dfacf5aa2cca3ecc242301c54118419b2.tar.gz
netbsd: netbsd doesn't use sigsuspend
Diffstat (limited to 'netbsd')
-rw-r--r--netbsd/arch.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/netbsd/arch.c b/netbsd/arch.c
index 7d79bd96..6c363e82 100644
--- a/netbsd/arch.c
+++ b/netbsd/arch.c
@@ -205,15 +205,6 @@ bool arch_archInit(honggfuzz_t* hfuzz) {
return false;
}
- /*
- * Set the bitmask (once) of interesting signals, that this thread will be waiting for
- * (with sigsuspend). Do it once here, to save precious CPU cycles, as this cannot be
- * a statically initialized const variable
- */
- sigemptyset(&hfuzz->netbsd.waitSigSet);
- sigaddset(&hfuzz->netbsd.waitSigSet, SIGIO);
- sigaddset(&hfuzz->netbsd.waitSigSet, SIGCHLD);
-
/* Updates the important signal array based on input args */
arch_traceSignalsInit(hfuzz);