no error id of thread! change print_error to print_debug

This commit is contained in:
2025-06-06 19:35:11 +02:00
parent affca01546
commit 4bcdf96c12
2 changed files with 2 additions and 1 deletions
+2 -1
View File
@@ -217,7 +217,8 @@ long int id_of_thread_executed(const char * func_call_name){
for(long int i=0; i<= parallel_nb; ++i)
PRINT_DEBUG(" id_thread_self[%ld] = %ld \n", i, id_thread_self[i]);
}*/
PRINT_ERROR("\nsomething wrong on %s, called by <%s>, id_from_self: %ld\n",__func__, func_call_name,id_from_self);
/* no error, when pthread is call in a test, we will not have a match! */
PRINT_DEBUG("\n debug [%s]: called by <%s>, id_from_self: %ld\n",__func__, func_call_name,id_from_self);
return -1;
}