diff options
author | Ingela Anderton Andin <[email protected]> | 2017-04-06 16:03:11 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-04-27 11:07:38 +0200 |
commit | c6bdd67b33b70d862e2a2d0f582106f2e930d970 (patch) | |
tree | 6d8f9b0661466c4c36d88e8ee7666c4b8a0754c0 /system/doc/design_principles/sup_princ.xml | |
parent | a1100c46c2ca2121d723edc03cb7885e3014af7c (diff) | |
download | otp-c6bdd67b33b70d862e2a2d0f582106f2e930d970.tar.gz otp-c6bdd67b33b70d862e2a2d0f582106f2e930d970.tar.bz2 otp-c6bdd67b33b70d862e2a2d0f582106f2e930d970.zip |
stdlib: Deprecate gen_fsm
Diffstat (limited to 'system/doc/design_principles/sup_princ.xml')
-rw-r--r-- | system/doc/design_principles/sup_princ.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/doc/design_principles/sup_princ.xml b/system/doc/design_principles/sup_princ.xml index 478d1bf714..4fd210aa48 100644 --- a/system/doc/design_principles/sup_princ.xml +++ b/system/doc/design_principles/sup_princ.xml @@ -276,7 +276,6 @@ child_spec() = #{id => child_id(), % mandatory <list type="bulleted"> <item><c>supervisor:start_link</c></item> <item><c>gen_server:start_link</c></item> - <item><c>gen_fsm:start_link</c></item> <item><c>gen_statem:start_link</c></item> <item><c>gen_event:start_link</c></item> <item>A function compliant with these functions. For details, @@ -341,7 +340,7 @@ child_spec() = #{id => child_id(), % mandatory <p><c>modules</c> are to be a list with one element <c>[Module]</c>, where <c>Module</c> is the name of the callback module, if the child process is a supervisor, - gen_server, gen_fsm or gen_statem. + gen_server, gen_statem. If the child process is a gen_event, the value shall be <c>dynamic</c>.</p> <p>This information is used by the release handler during |