<div dir="ltr">Hello,<br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Dec 18, 2017 at 3:29 PM, Roger Lipscombe <span dir="ltr"><<a href="mailto:roger@differentpla.net" target="_blank">roger@differentpla.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I can get a list of binaries for a process with process_info(Pid,<br>
binary), which returns {binary, [{Id, Size, NRefs},...]}.<br>
<br>
Given the Id (which looks like 140327404952984, for example), can I<br>
find out what's *in* that binary?<br></blockquote><div><br></div><div>It is not possible without looking under the hood in the VM. The ID is a an 'Binary *', so if you attach to the process using gdb and issue</div><div><br></div><div>(gdb) p *(Binary*)(140327404952984)</div><div><br></div><div>You should get some information about what the binary is. The same can of course be done from a core file if you have the ID.</div><div><br></div><div>Lukas</div></div></div></div>