==== run-default ====
cc -O2 -pipe  -g -Wall -Wpointer-arith -Wuninitialized -Wstrict-prototypes -Wmissing-prototypes -Wunused -Wsign-compare -Wshadow  -MD -MP  -c /home/src/regress/sys/netinet/tcpthread/tcpthread.c
cc   -o tcpthread tcpthread.o -lpthread
ld: warning: tcpthread.c:655 (/home/src/regress/sys/netinet/tcpthread/tcpthread.c:655)(tcpthread.o:(main)): warning: rand_r() is not random, it is deterministic.
time  ./tcpthread
count: connect 1, accept 1, send 1, recv 0, close 1, drop 0
       10.03 real        29.82 user         0.02 sys

==== run-sock100 ====
ulimit -n 500; time  ./tcpthread -n100
count: connect 152907, accept 100, send 92068, recv 0, close 64325, drop 0
    0m10.10s real     0m19.00s user     0m14.15s system

==== run-splice ====
time  ./tcpthread -n10 -S2
count: connect 118540, splice 1547, unsplice 0, max 0, idle 0, accept 10, send 21891, recv 14, close 119800, drop 0
       10.06 real        21.98 user        12.57 sys

==== run-unsplice ====
time  ./tcpthread -n10 -S2 -U1
count: connect 50103, splice 2329, unsplice 6714, max 0, idle 0, accept 10, send 30692, recv 10013, close 31049, drop 0
       10.04 real        24.87 user         8.85 sys

==== run-max ====
time  ./tcpthread -n10 -S4 -M100 -s2 -r2
count: connect 20357, splice 2426, unsplice 0, max 1, idle 0, accept 3259, send 1526, recv 4341, close 23938, drop 0
       10.10 real        21.58 user        15.95 sys

==== run-idle ====
time  ./tcpthread -n10 -S4 -I100 -s2 -r2
count: connect 23, splice 7, unsplice 0, max 0, idle 0, accept 13, send 16, recv 19, close 22, drop 0
       10.10 real        30.18 user         9.82 sys

==== run-drop ====
time doas -n  ./tcpthread -n10 -D3 -o0
count: connect 10, accept 10, send 20, recv 5, close 0, drop 10
       10.09 real        40.02 user         0.02 sys

==== run-splicedrop ====
time doas -n  ./tcpthread -n10 -S2 -D3 -o0
count: connect 26, splice 10, unsplice 0, max 0, idle 0, accept 20, send 295540, recv 132057, close 0, drop 24
       10.05 real         5.11 user        15.87 sys