From e4e6be433e024a54d7b1e465d90f95769a5f910c Mon Sep 17 00:00:00 2001
From: Patrik Nyblom
The following code:
- X = adler32(Data1),
- Y = adler32(X,Data2).
+ X = erlang:adler32(Data1),
+ Y = erlang:adler32(X,Data2).
- would assign the same value to
- Y = adler32([Data1,Data2]).
+ Y = erlang:adler32([Data1,Data2]).
The following code:
- Y = adler32(Data1),
- Z = adler32(Y,Data2).
+ Y = erlang:adler32(Data1),
+ Z = erlang:adler32(Y,Data2).
- would assign the same value to
- X = adler32(Data1),
- Y = adler32(Data2),
- Z = adler32_combine(X,Y,iolist_size(Data2)).
+ X = erlang:adler32(Data1),
+ Y = erlang:adler32(Data2),
+ Z = erlang:adler32_combine(X,Y,iolist_size(Data2)).
The following code:
- X = crc32(Data1),
- Y = crc32(X,Data2).
+ X = erlang:crc32(Data1),
+ Y = erlang:crc32(X,Data2).
- would assign the same value to
- Y = crc32([Data1,Data2]).
+ Y = erlang:crc32([Data1,Data2]).
The following code:
- Y = crc32(Data1),
- Z = crc32(Y,Data2).
+ Y = erlang:crc32(Data1),
+ Z = erlang:crc32(Y,Data2).
- would assign the same value to
- X = crc32(Data1),
- Y = crc32(Data2),
- Z = crc32_combine(X,Y,iolist_size(Data2)).
+ X = erlang:crc32(Data1),
+ Y = erlang:crc32(Data2),
+ Z = erlang:crc32_combine(X,Y,iolist_size(Data2)).
If
Once
Once
Prior to OTP release R11B (erts version 5.5)
Prior to OTP release R11B (erts version 5.5)
The returned value is
Currently the following
Remove (one)
Calling
Calling
- erlang:demonitor(MonitorRef),
+ demonitor(MonitorRef),
receive
{_, MonitorRef, _, _, _} ->
true
@@ -863,7 +863,7 @@ false
Failure: badarg if OptionList is not a list, or
if Option is not a valid option, or the same failure as for
- erlang:demonitor/1
+ demonitor/1
-> catch erlang:error(foobar). +> catch error(foobar). {'EXIT',{foobar,[{erl_eval,do_apply,5}, {erl_eval,expr,5}, {shell,exprs,6}, @@ -966,7 +966,7 @@ b
Returns a string which corresponds to the text
representation of
-> erlang:integer_to_list(1023, 16). +> integer_to_list(1023, 16). "3FF"
Returns an integer whose text representation in base
-> erlang:list_to_integer("3FF", 16). +> list_to_integer("3FF", 16). 1023
Failure:
When a process is monitored by registered name, the process
that has the registered name at the time when
-
If/when
If/when
The monitoring is turned off either when the
If an attempt is made to monitor a process on an older node
(where remote process monitoring is not implemented or one
where remote process monitoring by registered name is not
implemented), the call fails with
Making several calls to
Making several calls to
A list of pids that are monitoring the process (with
-
A list of monitors (started by
A list of monitors (started by
Monitor the new process (just like
-