#!/bin/sh

: > sse
: > nosse
for N in `jot 30`; do
    LD_LIBRARY_PATH=/usr/obj/freebsd/base/head/lib/libthr \
        cpuset -l 0-5 ./mutex_bench >> sse
    cpuset -l 0-5 ./mutex_bench >> nosse
done
