<div class="gmail_quote">2008/5/29 John M. Nordgaard <<a href="mailto:archevis@cyber.no">archevis@cyber.no</a>>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi all,<br>
<br>
Been looking through the documentation in search of an answer, and have<br>
not been able to locate one, so I hope I haven't missed the obvious<br>
here... my Erlang mileage is still nothing to brag about. :-)<br>
<br>
I was wondering if there is a simple and straightforward way to send a<br>
message to all linked processes. Now, I am aware that a process exit<br>
signal is transmitted in a functionally similar manner, so it seems that<br>
at least some form of "broadcast to all linked processes" operation exists<br>
within the runtime. But is it possible to invoke such functionality<br>
directly from source code?</blockquote><div><br></div><div>send_links(Message) -></div><div>    {link,Links} = process_info(self(), links),</div><div>    lists:foreach(fun (P) -> P ! Message end, Links). </div><div>
<br></div><div>Robert</div><div><br></div></div>