Index: doc/uC++toCFA/uC++toCFA.tex
===================================================================
--- doc/uC++toCFA/uC++toCFA.tex	(revision 3b21c9689f76fa7dd6b57be3084a8e37ab0d7809)
+++ doc/uC++toCFA/uC++toCFA.tex	(revision 8e90fd6bdd26acf67f6a5bae4b294ee9084241dc)
@@ -11,6 +11,6 @@
 %% Created On       : Wed Apr  6 14:53:29 2016
 %% Last Modified By : Peter A. Buhr
-%% Last Modified On : Thu Jan 16 11:49:47 2025
-%% Update Count     : 6281
+%% Last Modified On : Fri Jan 17 07:39:09 2025
+%% Update Count     : 6284
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
@@ -588,37 +588,4 @@
 
 
-\section{Thread}
-
-\begin{cquote}
-\begin{tabular}{@{}l|ll@{}}
-\begin{uC++}
-
-@_Task@ T {
-	// private task fields
-	void main() {
-		... @_Resume E( ... ) _At partner@;
-		... @uThisTask();@ ...
-	}
-  public:
-};
-\end{uC++}
-&
-\begin{cfa}
-#include <$thread$.hfa>
-@thread@ T {
-	// private task fields
-
-};
-void main( @T & t@ ) {
-	... @resumeAt( partner, ExceptionInst( E, ... )@ );
-	... @active_thread();@ ...
-}
-\end{cfa}
-\\
-\multicolumn{2}{@{}l@{}}{\lstinline{T t; // start thread in main routine}}
-\end{tabular}
-\end{cquote}
-
-
 \section{\lstinline{COBEGIN}/\lstinline{COFOR}}
 
@@ -634,5 +601,4 @@
 		BEGIN osacquire( cout ) << "C" << endl; END
 		BEGIN osacquire( cout ) << "D" << endl; END
-		BEGIN osacquire( cout ) << "E" << endl; END
 	@COEND@
 	@COFOR@( i, 1, 10,
@@ -651,5 +617,4 @@
 		corun { mutex( sout ) sout | "C"; }
 		corun { mutex( sout ) sout | "D"; }
-		corun { mutex( sout ) sout | "E"; }
 	}
 	@cofor@( i; 10 ) {
@@ -735,4 +700,37 @@
 }
 \end{cfa}
+\end{tabular}
+\end{cquote}
+
+
+\section{Thread}
+
+\begin{cquote}
+\begin{tabular}{@{}l|ll@{}}
+\begin{uC++}
+
+@_Task@ T {
+	// private task fields
+	void main() {
+		... @_Resume E( ... ) _At partner@;
+		... @uThisTask();@ ...
+	}
+  public:
+};
+\end{uC++}
+&
+\begin{cfa}
+#include <$thread$.hfa>
+@thread@ T {
+	// private task fields
+
+};
+void main( @T & t@ ) {
+	... @resumeAt( partner, ExceptionInst( E, ... )@ );
+	... @active_thread();@ ...
+}
+\end{cfa}
+\\
+\multicolumn{2}{@{}l@{}}{\lstinline{T t; // start thread in main routine}}
 \end{tabular}
 \end{cquote}
