Erlang 跟踪器源代码

发布于 2024-12-09 07:35:53 字数 180 浏览 0 评论 0原文

有谁知道哪些 Erlang 源文件负责其跟踪器(trace BIF)。

我正在研究 Erlang 中同步跟踪的可能性(其中受监视的进程等待接收跟踪消息的监视进程的继续)。现在我正在尝试决定是尝试修改 Erlang 的源代码还是为此类事情生成一个解析器。任何反馈将不胜感激。

谢谢。

Does anybody know which Erlang source files are responsible for its tracer (the trace BIF).

I am looking into the possibility of synchronous tracing in Erlang (where the monitored process waits for go-ahead from the monitoring process receiving the trace messages). For now I'm trying to decide whether to try modifying Erlang's source code or generate a parser for this sort of thing. Any feedback would be appreciated.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

別甾虛僞 2024-12-16 07:35:53

我相信您想首先查看 erts/emulator/beam/erl_bif_trace.c,因为它实现了 trace/3 和朋友。 (例如,trace/3 由 C 函数 trace_3() 实现。)

您可能还对 erl_trace.c 感兴趣,它看起来是为模拟器做大量跟踪工作的函数。

I believe you want to look at erts/emulator/beam/erl_bif_trace.c first, as that implements trace/3 and friends. (trace/3 is implemented by the C function trace_3(), for example.)

You may also be interested in erl_trace.c, which looks to be the functions that do a lot of the tracing work for the emulator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文