]> Creatis software - bbtk.git/commitdiff
Test code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Thu, 16 Jan 2025 07:55:41 +0000 (08:55 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Thu, 16 Jan 2025 07:55:41 +0000 (08:55 +0100)
kernel/src/bbtkBlackBox.cxx

index 4eccbb123ad67201e4960af584d48149110bbef9..8d814229dca69ad0cbc69fc54172a2052e7b3b6a 100644 (file)
@@ -76,7 +76,8 @@ void print_trace()
 
 namespace bbtk
 {
-  static bool bbmgInConstruction    = false;
+//  static bool bbmgInConstruction    = false;
+  static int bbmgInConstruction    = 0;
   static bool bbmgSomeBoxExecuting     = false;
   static bool bbmgFreezeExecution      = false;
   static std::set<BlackBox::WeakPointer> bbmgExecutionList;
@@ -1543,14 +1544,21 @@ namespace bbtk
 //EED2025-01-15
 bool BlackBox::bbGlobalGetInConstruction()
 {
-//    printf("EED BlackBox::bbGlobalGetInConstruction \n");
-    return bbmgInConstruction;
+    //    return bbmgInConstruction;
+    printf("BlackBox::bbGlobalGetInConstruction bbmgInConstruction=%d \n", bbmgInConstruction );
+    if (bbmgInConstruction>0) return true;
+    return false;
 }
 
 void BlackBox::bbGlobalSetInConstruction(bool b)
 {
-    printf("EED BlackBox::bbGlobalSetInConstruction --)-)--)---)-)-)-)--)--)-\n");
-    bbmgInConstruction =  b;
+    if (b==true) {
+        bbmgInConstruction++;
+    } else {
+        bbmgInConstruction--;
+    }
+    printf("BlackBox::bbGlobalSetInConstruction ----- bbmgInConstruction=%d\n", bbmgInConstruction );
+//    bbmgInConstruction =  b;
 }