Index: tests/concurrency/examples/matrixSum.cfa
===================================================================
--- tests/concurrency/examples/matrixSum.cfa	(revision 7350330f5cd61b15d7b7d0bc6afa0bbe37c42c7d)
+++ tests/concurrency/examples/matrixSum.cfa	(revision c1e66d966aadf6846330871033458d4a398bd576)
@@ -10,9 +10,10 @@
 // Created On       : Mon Oct  9 08:29:28 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Sep  8 19:05:34 2023
-// Update Count     : 19
+// Last Modified On : Wed Feb 20 08:37:53 2019
+// Update Count     : 16
 //
 
 #include <fstream.hfa>
+#include <kernel.hfa>
 #include <thread.hfa>
 
@@ -34,20 +35,18 @@
 
 int main() {
-	const int rows = 10, cols = 1000;
+	/* const */ int rows = 10, cols = 1000;
 	int matrix[rows][cols], subtotals[rows], total = 0;
 	processor p;										// add kernel thread
 
-	for ( r; rows ) {									// initialize
+	for ( r; rows ) {
 		for ( c; cols ) {
 			matrix[r][c] = 1;
 		} // for
 	} // for
-
 	Adder * adders[rows];
 	for ( r; rows ) {									// start threads to sum rows
 		adders[r] = &(*malloc()){ matrix[r], cols, subtotals[r] };
-		// adders[r] = new( matrix[r], cols, subtotals[r] );
+//		adders[r] = new( matrix[r], cols, &subtotals[r] );
 	} // for
-
 	for ( r; rows ) {									// wait for threads to finish
 		delete( adders[r] );
@@ -58,4 +57,5 @@
 
 // Local Variables: //
+// tab-width: 4 //
 // compile-command: "cfa matrixSum.cfa" //
 // End: //
