1> dbg:get_tracer().
{error,{no_tracer_on_node,nonode@nohost}}
2> dbg:tracer().
{ok,<0.33.0>}
3> dbg:get_tracer().
{ok,<0.35.0>}
document告诉:get_tracer
返回the process or port to which all trace messages are sent.
但它没有清楚说明pid
dbg:tracer
答案 0 :(得分:0)
正如你在 pman 中看到的,确实有两个过程:
你可以在这里看到他们在做什么:https://github.com/erlang/otp/blob/maint/lib/runtime_tools/src/dbg.erl
我没有深入挖掘这一点,但一眼就看出前者正在做更多类似经理的工作,后者实际上处理了痕迹。