#!/bin/sh

# Run memdecay in a continuous loop to collect statistics.
# Redirect output to file and run this in the background.

#Specify memory size for FreeBSD. Solaris will tell you how much it wants.
#scan_size="-s 256M"

while :
do
	./memdecay $scan_size
done
