Re: [pooma-dev] Re: Cheetah Status
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [pooma-dev] Re: Cheetah Status



On Mon, 16 Aug 2004, Richard Guenther wrote:

> Ok, here's my set of local changes to the Cheetah library.
>
> Sometimes  Richard Guenther <richard.guenther@xxxxxxxxxxxxxxxx>
>
> 	* BUGS: new.
> 	bin/makeinstall: ignore SCCS dirs.
> 	config/LINUXGCC.conf: use -g, not -ggdb.
> 	config/LINUXICC.conf: new.
> 	configure: don't set shmem_locksrc, build-system
> 	is broken.
> 	src/Controller/ControllerFactory.cpp: build factory
> 	with arg not removed.
> 	src/Controller/Group.h: reorder initializers.
> 	src/Controller/Shmem/MM_Allocator.h: remove broken
> 	method.
> 	src/Utilities/CheetahRefCountedPtr.h: const pointer
> 	by value makes no sense.
>
> This patch is against the cheetah-1.1.4 tarball.

A few more, from a different repository:

Sometimes  Richard Guenther <richard.guenther@xxxxxxxxxxxxxxxx>

	* src/Controller/MPI/cheetah_mpi.h: remove stray semicolon.
	src/MatchingHandler/MatchingAction.h; fix typo.

Richard.

--
Richard Guenther <richard dot guenther at uni-tuebingen dot de>
WWW: http://www.tat.physik.uni-tuebingen.de/~rguenth/
diff -ur /tmp/cheetah-1.1.4/src/Controller/MPI/cheetah_mpi.h cheetah-1.1.4/src/Controller/MPI/cheetah_mpi.h
--- /tmp/cheetah-1.1.4/src/Controller/MPI/cheetah_mpi.h	Wed Oct 24 22:47:47 2001
+++ cheetah-1.1.4/src/Controller/MPI/cheetah_mpi.h	Fri Dec 19 10:21:07 2003
@@ -28,7 +28,7 @@
   class Group;
   class MPIGroup;
   class MPIController;
-};
+}
 
 #ifdef __cplusplus
 extern "C"
diff -ur /tmp/cheetah-1.1.4/src/MatchingHandler/MatchingAction.h cheetah-1.1.4/src/MatchingHandler/MatchingAction.h
--- /tmp/cheetah-1.1.4/src/MatchingHandler/MatchingAction.h	Mon Apr 17 22:33:03 2000
+++ cheetah-1.1.4/src/MatchingHandler/MatchingAction.h	Fri Dec 19 10:21:08 2003
@@ -221,7 +221,7 @@
 
   inline void operator()()
   {
-    handler_m(extra);
+    handler_m(extra_m);
   }
 
   template<class T1>