aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/gen_event_SUITE.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2014-06-11 14:29:19 +0200
committerSiri Hansen <[email protected]>2014-06-11 14:29:19 +0200
commitda42410cb15c0749ea6cf9b6196b81320d8391b6 (patch)
tree829f5cdb59cf92cdaf381564fe51885644494650 /lib/stdlib/test/gen_event_SUITE.erl
parent5f2b70f205bc64be545b75db5419111aac11291d (diff)
parent154a057dcbf087deb38b13e97f0a0373e6a72f1d (diff)
downloadotp-da42410cb15c0749ea6cf9b6196b81320d8391b6.tar.gz
otp-da42410cb15c0749ea6cf9b6196b81320d8391b6.tar.bz2
otp-da42410cb15c0749ea6cf9b6196b81320d8391b6.zip
Merge branch 'siri/sync-stop-gen/OTP-11173'
* siri/sync-stop-gen/OTP-11173: Add synchronous stop function to wx_object Fix minor bugs in gen_server and gen_fsm documentation Update gen_event:stop to be synchronous Add synchronous stop functions to gen_server and gen_fsm Add synchronous stop function to proc_lib Add system message 'terminate' Remove old code from stdlib/test/sys_sp2.erl
Diffstat (limited to 'lib/stdlib/test/gen_event_SUITE.erl')
-rw-r--r--lib/stdlib/test/gen_event_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/gen_event_SUITE.erl b/lib/stdlib/test/gen_event_SUITE.erl
index 60a1ba8c60..576a5adfce 100644
--- a/lib/stdlib/test/gen_event_SUITE.erl
+++ b/lib/stdlib/test/gen_event_SUITE.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 1996-2013. All Rights Reserved.
+%% Copyright Ericsson AB 1996-2014. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -106,7 +106,7 @@ start(Config) when is_list(Config) ->
?line {error, {already_started, _}} =
gen_event:start({global, my_dummy_name}),
- exit(Pid6, shutdown),
+ ok = gen_event:stop({global, my_dummy_name}, shutdown, 10000),
receive
{'EXIT', Pid6, shutdown} -> ok
after 10000 ->