DragonFlyBSD Kernel Audit
DF-0901 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# build.sh — DF-0901 race harness build
# Builds the kernel module that reproduces the unlocked-traversal-vs-free race
cd "$(dirname "$0")"
echo "cc -DKERNEL -c race_harness.c" 
make 2>&1
echo "BUILD_EXIT=$?"
ls -l race_harness.ko 2>/dev/null