diff options
author | Siri Hansen <[email protected]> | 2014-05-06 11:50:45 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2014-05-26 11:53:25 +0200 |
commit | f979493bfa777e61d4da1460982370c0cecc1ef3 (patch) | |
tree | c81725ffee2bb8d34ab2dde36dc977dc7d84de66 /lib/stdlib/test/gen_event_SUITE.erl | |
parent | 9d7d1207ff1240b9711f192deb0893c3a044a3d8 (diff) | |
download | otp-f979493bfa777e61d4da1460982370c0cecc1ef3.tar.gz otp-f979493bfa777e61d4da1460982370c0cecc1ef3.tar.bz2 otp-f979493bfa777e61d4da1460982370c0cecc1ef3.zip |
Update gen_event:stop to be synchronous
This function now uses proc_lib:stop, which guarantees that the
process is terminated before the function return.
Diffstat (limited to 'lib/stdlib/test/gen_event_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/gen_event_SUITE.erl | 4 |
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 -> |