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;
//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;
}