Port.monitor
You're seeing just the function
monitor, go back to Port module for more information.
Specs
Starts monitoring the given port from the calling process.
Once the monitored port process dies, a message is delivered to the monitoring process in the shape of:
{:DOWN, ref, :port, object, reason}where:
refis a monitor reference returned by this function;objectis either theportbeing monitored (when monitoring by port ID) or{name, node}(when monitoring by a port name);reasonis the exit reason.
See :erlang.monitor/2 for more information.
Inlined by the compiler.