Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/bench.hfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/bench.hfa	(revision 4066bd28a03b029487be850010dbabca3c9c53b0)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/bench.hfa	(revision 4066bd28a03b029487be850010dbabca3c9c53b0)
@@ -0,0 +1,7 @@
+#include <time.hfa>
+
+static inline uint64_t bench_time() {
+	struct timespec ts;
+	clock_gettime( CLOCK_REALTIME, &ts );
+	return 1000000000LL * ts.tv_sec + ts.tv_nsec;
+} // bench_time
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/dynamic.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/dynamic.cfa	(revision cec2551f696bdb182deb718cf71e465327e0e4ca)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/dynamic.cfa	(revision 4066bd28a03b029487be850010dbabca3c9c53b0)
@@ -52,6 +52,4 @@
 	} // switch
 
-    // printf("starting\n");
-
     executor e{ 0, 1, 1, false, 1 };
 
@@ -59,6 +57,4 @@
 
     start_time = bench_time();
-
-    // printf("started\n");
 
     derived_msg * d_msg = malloc();
@@ -68,5 +64,4 @@
     *d_actor << *d_msg;
 
-    // printf("stopping\n");
 
     stop_actor_system();
@@ -78,6 +73,4 @@
     // printf("%.2f\n", ((double)(end_time - start_time)) / ((double)Times) ); // ns
 
-    // printf("stopped\n");
-
     return 0;
 }
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/executor.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/executor.cfa	(revision cec2551f696bdb182deb718cf71e465327e0e4ca)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/executor.cfa	(revision 4066bd28a03b029487be850010dbabca3c9c53b0)
@@ -87,10 +87,7 @@
     executor e{ Processors, Processors, Processors == 1 ? 1 : Processors * 512, true, BufSize };
 
-    // printf("starting\n");
     uint64_t start_time = bench_time();
 
     start_actor_system( e );
-
-    // printf("started\n");
 
     d_actor actors[ Actors ];
@@ -100,6 +97,4 @@
 	} // for
 
-    // printf("stopping\n");
-
     stop_actor_system();
     
@@ -108,6 +103,4 @@
     printf("%.2f\n", ((double)(end_time - start_time))*((double)1e-9) );
 
-    // printf("stopped\n");
-
     return 0;
 }
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/matrix.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/matrix.cfa	(revision cec2551f696bdb182deb718cf71e465327e0e4ca)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/matrix.cfa	(revision 4066bd28a03b029487be850010dbabca3c9c53b0)
@@ -90,11 +90,7 @@
     executor e{ Processors, Processors, Processors == 1 ? 1 : Processors * 32, true };
 
-    // printf("starting\n");
-
     uint64_t start_time = bench_time();
 
     start_actor_system( e );
-
-    // printf("started\n");
 
     derived_msg messages[xr];
@@ -110,6 +106,4 @@
 	} // for
 
-    // printf("stopping\n");
-
     stop_actor_system();
     
@@ -117,6 +111,4 @@
 
     printf("%.2f\n", ((double)(end_time - start_time))*((double)1e-9) );
-
-    // printf("stopped\n");
 
     for ( r = 0; r < xr; r += 1 ) {						// deallocate X and Z matrices
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/static.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/static.cfa	(revision cec2551f696bdb182deb718cf71e465327e0e4ca)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/static.cfa	(revision 4066bd28a03b029487be850010dbabca3c9c53b0)
@@ -48,6 +48,4 @@
 	} // switch
 
-    // printf("starting\n");
-
     executor e{ 0, 1, 1, false, 1 };
     
@@ -55,6 +53,4 @@
 
     start_time = bench_time();
-
-    // printf("started\n");
 
     derived_msg msg;
@@ -64,6 +60,4 @@
     actor << msg;
 
-    // printf("stopping\n");
-
     stop_actor_system();
     
@@ -72,6 +66,4 @@
     // printf("%.2f\n", ((double)(end_time - start_time))*((double)1e-9) ); // s
 
-    // printf("stopped\n");
-
     return 0;
 }
