vcl: basic support for apps that fork
[vpp.git] / src / vcl / vcl_debug.h
index 48ff21a..191d400 100644 (file)
 
 #define VDBG(_lvl, _fmt, _args...)                                     \
   if (VCL_DBG_ON && vcm->debug > _lvl)                                 \
-    clib_warning ("vcl<%d:%d>: " _fmt, vcm->current_pid,               \
+    clib_warning ("vcl<%d:%d>: " _fmt,                                         \
+                 vcm->workers[__vcl_worker_index].current_pid,         \
                  __vcl_worker_index, ##_args)
 
 #define VWRN(_fmt, _args...)                                           \
-clib_warning ("vcl<%d:%d>: " _fmt, vcm->current_pid,                   \
-               __vcl_worker_index, ##_args)
+  clib_warning ("vcl<%d:%d>: " _fmt,                                   \
+                vcm->workers[__vcl_worker_index].current_pid,          \
+                __vcl_worker_index, ##_args)
 
 #define VERR(_fmt, _args...)                                           \
-  clib_warning ("vcl<%d:%d>: ERROR " _fmt, vcm->current_pid,           \
+  clib_warning ("vcl<%d:%d>: ERROR " _fmt,                             \
+                vcm->workers[__vcl_worker_index].current_pid,          \
                __vcl_worker_index, ##_args)
 
 #define foreach_vcl_dbg_evt                                            \