[erlang-questions] is this a shell bug?

Robert Raschke rtrlists@REDACTED
Mon Apr 23 12:23:50 CEST 2012


Whenever I tinker with message sending and receiving in the shell, I make
me this handy small fun (or similar) to ease my life:

(erl@REDACTED)1> R = fun () -> receive X -> X after 0 ->
no_messages_pending end end.
#Fun<erl_eval.20.21881191>
(erl@REDACTED)2> self() ! {a, message}.
{a,message}
(erl@REDACTED)3> R().
{a,message}
(erl@REDACTED)4> R().
no_messages_pending
(erl@REDACTED)5>


Robby

On Mon, Apr 23, 2012 at 8:56 AM, Attila Rajmund Nohl <
attila.r.nohl@REDACTED> wrote:

> 2012/4/23 吴磊 <mjollnir.ray@REDACTED>:
> > Erlang R15B01 (erts-5.9.1) [source] [64-bit] [smp:4:4]
> > [async-threads:0] [hipe] [kernel-poll:false]
> >
> > Eshell V5.9.1  (abort with ^G)
> > 1> self().
> > <0.32.0>
> > 2> process_flag(trap_exit, true).
> > false
> > 3>  spawn_link(fun() -> ok end).
> > <0.36.0>
> > 4> process_info(self(), messages).
> > {messages,[{'EXIT',<0.36.0>,normal}]}
> > 5> receive X -> X end.
> > {'EXIT',<0.36.0>,normal}
> > 6>  spawn_link(fun() -> ok end).
> > <0.40.0>
> > 7> process_info(self(), messages).
> > {messages,[{'EXIT',<0.40.0>,normal}]}
> > 8> receive X -> X end.
> >
> > shell SUSPENDING .... WHAT's happed here?
>
> X was already bound, so you were waiting for {'EXIT',<0.36.0>,normal},
> but got {'EXIT',<0.40.0>,normal}
>
> Too bad the shell can't read my mind, I've spent more hours chasing
> "bugs" like this than I'm willing to admit.
> _______________________________________________
> erlang-questions mailing list
> erlang-questions@REDACTED
> http://erlang.org/mailman/listinfo/erlang-questions
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://erlang.org/pipermail/erlang-questions/attachments/20120423/8df09fab/attachment.htm>


More information about the erlang-questions mailing list