utility to count threads
diff --git a/releng.control/nThreads.sh b/releng.control/nThreads.sh
new file mode 100644
index 0000000..5e65225
--- /dev/null
+++ b/releng.control/nThreads.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+PIDFILE=cc.pid
+echo;
+if [ -f ${PIDFILE} ] ; then
+  PID=`cat ${PIDFILE}`
+  nthreads=`ps -mp $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