aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/gen_fsm.erl
diff options
context:
space:
mode:
authorAnton N Ryabkov <[email protected]>2017-04-20 16:31:07 +0700
committerAnton N Ryabkov <[email protected]>2017-05-02 08:22:13 +0700
commit98233727217ddd8263253493a9248db79d3cd384 (patch)
tree873e908c1e44e8b4ed4944fa8b2cee19a2b61790 /lib/stdlib/src/gen_fsm.erl
parent4a60e2df0ff2a95ed899768d8698d419b067d371 (diff)
downloadotp-98233727217ddd8263253493a9248db79d3cd384.tar.gz
otp-98233727217ddd8263253493a9248db79d3cd384.tar.bz2
otp-98233727217ddd8263253493a9248db79d3cd384.zip
Added reuse of code.
Diffstat (limited to 'lib/stdlib/src/gen_fsm.erl')
-rw-r--r--lib/stdlib/src/gen_fsm.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/gen_fsm.erl b/lib/stdlib/src/gen_fsm.erl
index 8da79c41f9..ac38105820 100644
--- a/lib/stdlib/src/gen_fsm.erl
+++ b/lib/stdlib/src/gen_fsm.erl
@@ -383,7 +383,7 @@ loop(Parent, Name, StateName, StateData, Mod, infinity, AutoHibernateTimeout, De
Msg ->
decode_msg(Msg,Parent, Name, StateName, StateData, Mod, infinity, AutoHibernateTimeout, Debug, false)
after AutoHibernateTimeout ->
- proc_lib:hibernate(?MODULE,wake_hib, [Parent, Name, StateName, StateData, Mod, AutoHibernateTimeout, Debug])
+ loop(Parent, Name, StateName, StateData, Mod, hibernate, AutoHibernateTimeout, Debug)
end;
loop(Parent, Name, StateName, StateData, Mod, Time, AutoHibernateTimeout, Debug) ->