utility
diff --git a/releng.control/nHandles.sh b/releng.control/nHandles.sh
new file mode 100644
index 0000000..ee60011
--- /dev/null
+++ b/releng.control/nHandles.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+PIDFILE=cc.pid
+echo;
+if [ -f ${PIDFILE} ] ; then
+  PID=`cat ${PIDFILE}`
+  # I've found lsof is in /user/sbin on some machines
+  nthreads=`/usr/bin/lsof -p $PID | wc -l`
+  echo "    Number of threads in wtp's CC process: $nthreads"
+else
+  echo "    PID file (${PIDFILE}) does not exist."
+  echo "        Either CC not running, or PID file deleted"
+fi
+echo