DragonFlyBSD Kernel Audit
DF-0587 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0587 build: compile the PoC reproducer.
# race.c uses pthreads (4 scanner + 4 destroyer threads) and the
# ieee80211 ioctl interface.
set -e
cd "$(dirname "$0")"
cc -O2 -Wall race.c -o race -lpthread
echo "BUILD_OK: ./race"