Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename synchro logging categories (simix->ker)
authorSUTER Frederic <frederic.suter@cc.in2p3.fr>
Wed, 10 Nov 2021 10:50:41 +0000 (11:50 +0100)
committerSUTER Frederic <frederic.suter@cc.in2p3.fr>
Wed, 10 Nov 2021 10:50:41 +0000 (11:50 +0100)
src/kernel/activity/ConditionVariableImpl.cpp
src/kernel/activity/MutexImpl.cpp
src/kernel/activity/SemaphoreImpl.cpp
src/kernel/activity/SynchroRaw.cpp

index 1a0a73b..bc546f1 100644 (file)
@@ -9,7 +9,7 @@
 #include "src/kernel/actor/SimcallObserver.hpp"
 #include <cmath> // std::isfinite
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_condition, simix_synchro, "Condition variables");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_condition, ker_synchro, "Condition variables kernel-space implementation");
 
 /********************************* Condition **********************************/
 
index 7c13296..c50af0e 100644 (file)
@@ -16,7 +16,7 @@
 #define MC_CHECK_NO_DPOR() (void)0
 #endif
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mutex, simix_synchro, "Mutex kernel-space implementation");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_mutex, ker_synchro, "Mutex kernel-space implementation");
 
 namespace simgrid {
 namespace kernel {
index fb13608..4214b16 100644 (file)
@@ -8,7 +8,7 @@
 #include "src/kernel/actor/SimcallObserver.hpp"
 #include <cmath> // std::isfinite
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_semaphore, simix_synchro, "Semaphore kernel-space implementation");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_semaphore, ker_synchro, "Semaphore kernel-space implementation");
 
 namespace simgrid {
 namespace kernel {
index da66c4d..39a59ec 100644 (file)
@@ -12,7 +12,8 @@
 #include "src/kernel/resource/CpuImpl.hpp"
 #include "src/simix/popping_private.hpp"
 
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_synchro, simix, "SIMIX Synchronization (mutex, semaphores and conditions)");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_synchro, kernel,
+                                "Kernel synchronization mechanisms (mutex, semaphores and conditions)");
 
 namespace simgrid {
 namespace kernel {