diff options
author | Anders Svensson <[email protected]> | 2015-02-09 00:36:56 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-02-20 02:26:53 +0100 |
commit | e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d (patch) | |
tree | 41d01dded073f8c7722b96166e7a8a9de11f3d0f /lib/diameter/src/base/diameter_stats.erl | |
parent | 5f6399fb9f5d1552bb0050b18e1c9a9085d8b5db (diff) | |
download | otp-e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d.tar.gz otp-e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d.tar.bz2 otp-e6d19a18b7c1057c2b4493f8db822c82bb0dbe0d.zip |
Use new time api in implementation
In particular, deal with the deprecation of erlang:now/0 in OTP 18. Be
backwards compatible with older releases: the new api is only used when
available.
The test suites have not been modified.
Diffstat (limited to 'lib/diameter/src/base/diameter_stats.erl')
-rw-r--r-- | lib/diameter/src/base/diameter_stats.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/diameter/src/base/diameter_stats.erl b/lib/diameter/src/base/diameter_stats.erl index 8353613d32..64ea082be0 100644 --- a/lib/diameter/src/base/diameter_stats.erl +++ b/lib/diameter/src/base/diameter_stats.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2014. All Rights Reserved. +%% Copyright Ericsson AB 2010-2015. 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 @@ -22,9 +22,11 @@ %% -module(diameter_stats). - -behaviour(gen_server). +-compile({no_auto_import, [now/0]}). +-import(diameter_lib, [now/0]). + -export([reg/2, reg/1, incr/3, incr/1, read/1, |