X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=bertos%2Fkern%2Fproc.c;fp=bertos%2Fkern%2Fproc.c;h=66caa2db3c7f87c7d2c2d87705a47165409707ea;hb=5ba55b7568e1c091b96138adbbcd1c484706b1b2;hp=15fe5b7f79112bf6b36662611e603148692c6036;hpb=04188ad75e2fb6ec7d681649c1b4a171d7c9f5a3;p=bertos.git diff --git a/bertos/kern/proc.c b/bertos/kern/proc.c index 15fe5b7f..66caa2db 100644 --- a/bertos/kern/proc.c +++ b/bertos/kern/proc.c @@ -40,8 +40,12 @@ #include "proc_p.h" #include "proc.h" -#include "cfg/cfg_arch.h" // ARCH_EMUL #include "cfg/cfg_proc.h" +#define LOG_LEVEL KERN_LOG_LEVEL +#define LOG_FORMAT KERN_LOG_FORMAT +#include + +#include "cfg/cfg_arch.h" // ARCH_EMUL #include "cfg/cfg_monitor.h" #include // ROUND_UP2 #include @@ -156,7 +160,7 @@ struct Process *proc_new_with_name(UNUSED_ARG(const char *, name), void (*entry) #if CONFIG_KERN_HEAP bool free_stack = false; #endif - TRACEMSG("name=%s", name); + LOG_INFO("name=%s", name); #if (ARCH & ARCH_EMUL) /* Ignore stack provided by caller and use the large enough default instead. */ @@ -328,7 +332,7 @@ void proc_setPri(struct Process *proc, int pri) */ void proc_exit(void) { - TRACEMSG("%p:%s", CurrentProcess, proc_currentName()); + LOG_INFO("%p:%s", CurrentProcess, proc_currentName()); #if CONFIG_KERN_MONITOR monitor_remove(CurrentProcess);