Hi list.
A quick survey.
Are there more people than me that sometimes define the record:
-record('DOWN',
{
ref, %% monitor reference
type, %% type of object 'process'
id, %% object id (pid)
reason %% reason for termination
}).
?
To simplify matching of 'DOWN' messages ?
Example:
handle_info(#'DOWN' { ref=Ref }, State) ->
...
/Tony