[cig-commits] r5018 - in long/3D/Gale/trunk/src/StGermain: . Base/Context/src

walter at geodynamics.org walter at geodynamics.org
Sat Oct 14 11:30:56 PDT 2006


Author: walter
Date: 2006-10-14 11:30:55 -0700 (Sat, 14 Oct 2006)
New Revision: 5018

Modified:
   long/3D/Gale/trunk/src/StGermain/
   long/3D/Gale/trunk/src/StGermain/Base/Context/src/AbstractContext.c
Log:
 r3045 at earth:  boo | 2006-10-14 11:08:00 -0700
  r3033 at earth (orig r3853):  KathleenHumble | 2006-10-12 17:43:51 -0700
  changed the pre-entry point test for debug mode
  for the entry points:
  self->ick goes to self->initialiseK
  self->runK goes to self->executeK
  
 



Property changes on: long/3D/Gale/trunk/src/StGermain
___________________________________________________________________
Name: svk:merge
   - 1ef209d2-b310-0410-a72d-e20c9eb0015c:/cig:3044
afb6c753-b9d0-0310-b4e7-dbd8d91cdd35:/trunk/StGermain:3852
   + 1ef209d2-b310-0410-a72d-e20c9eb0015c:/cig:3045
afb6c753-b9d0-0310-b4e7-dbd8d91cdd35:/trunk/StGermain:3853

Modified: long/3D/Gale/trunk/src/StGermain/Base/Context/src/AbstractContext.c
===================================================================
--- long/3D/Gale/trunk/src/StGermain/Base/Context/src/AbstractContext.c	2006-10-14 18:30:53 UTC (rev 5017)
+++ long/3D/Gale/trunk/src/StGermain/Base/Context/src/AbstractContext.c	2006-10-14 18:30:55 UTC (rev 5018)
@@ -573,7 +573,7 @@
 	Journal_Printf( self->debug, "In: %s\n", __func__ );
 
 	#ifdef DEBUG
-		AbstractContext_WarnIfNoHooks( self, self->icK, __func__ );
+		AbstractContext_WarnIfNoHooks( self, self->initialiseK, __func__ );
 	#endif
 	
 	/* Pre-mark the phase as complete as a default hook will attempt to initialise all live components (including this again) */
@@ -591,7 +591,7 @@
 	Journal_Printf( self->debug, "In: %s\n", __func__ );
 
 	#if DEBUG
-		AbstractContext_WarnIfNoHooks( self, self->runK, __func__ );
+		AbstractContext_WarnIfNoHooks( self, self->executeK, __func__ );
 	#endif
 	
 	/* Pre-mark the phase as complete as a default hook will attempt to initialise all live components (including this again) */
@@ -608,10 +608,6 @@
 	
 	Journal_Printf( self->debug, "In: %s\n", __func__ );
 
-	#ifdef DEBUG
-		AbstractContext_WarnIfNoHooks( self, self->icK, __func__ );
-	#endif
-	
 	/* Pre-mark the phase as complete as a default hook will attempt to initialise all live components (including this again) */
 	isDestroyed = self->isDestroyed;
 	self->isDestroyed = True;



More information about the cig-commits mailing list