diff options
author | Rickard Green <[email protected]> | 2010-12-09 15:09:50 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2010-12-14 16:58:41 +0100 |
commit | 267a5e7f6e0d578b3c9224fb87b78f76a9300c87 (patch) | |
tree | 39ca64b0dba29207e42c5572b59537028c7dab88 /erts/test/ethread_SUITE.erl | |
parent | b297bfdd47b0a39831d8cc2541aeb910f9af0bca (diff) | |
download | otp-267a5e7f6e0d578b3c9224fb87b78f76a9300c87.tar.gz otp-267a5e7f6e0d578b3c9224fb87b78f76a9300c87.tar.bz2 otp-267a5e7f6e0d578b3c9224fb87b78f76a9300c87.zip |
Remove unused ethread time functionality
Diffstat (limited to 'erts/test/ethread_SUITE.erl')
-rw-r--r-- | erts/test/ethread_SUITE.erl | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/erts/test/ethread_SUITE.erl b/erts/test/ethread_SUITE.erl index 93e27fa8d3..69e5af802f 100644 --- a/erts/test/ethread_SUITE.erl +++ b/erts/test/ethread_SUITE.erl @@ -37,7 +37,6 @@ equal_tids/1, mutex/1, try_lock_mutex/1, - time_now/1, cond_wait/1, broadcast/1, detached_thread/1, @@ -55,7 +54,6 @@ tests() -> equal_tids, mutex, try_lock_mutex, - time_now, cond_wait, broadcast, detached_thread, @@ -104,17 +102,6 @@ try_lock_mutex(suite) -> try_lock_mutex(Config) -> run_case(Config, "try_lock_mutex", ""). -time_now(doc) -> - ["Tests ethr_time_now by comparing time values with Erlang."]; -time_now(suite) -> - []; -time_now(Config) -> - run_case(Config, "time_now", "", fun (P) -> - spawn_link(fun () -> - watchdog(P) - end) - end). - wd_dispatch(P) -> receive bye -> |