aboutsummaryrefslogtreecommitdiffstats
path: root/lib/diameter/src/base/diameter_reg.erl
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2015-02-09 00:36:56 +0100
committerAnders Svensson <[email protected]>2015-02-20 02:26:53 +0100
commite6d19a18b7c1057c2b4493f8db822c82bb0dbe0d (patch)
tree41d01dded073f8c7722b96166e7a8a9de11f3d0f /lib/diameter/src/base/diameter_reg.erl
parent5f6399fb9f5d1552bb0050b18e1c9a9085d8b5db (diff)
downloadotp-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_reg.erl')
-rw-r--r--lib/diameter/src/base/diameter_reg.erl7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/diameter/src/base/diameter_reg.erl b/lib/diameter/src/base/diameter_reg.erl
index 3197c1aee1..f785777874 100644
--- a/lib/diameter/src/base/diameter_reg.erl
+++ b/lib/diameter/src/base/diameter_reg.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2010-2013. 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,10 +22,11 @@
%%
-module(diameter_reg).
--compile({no_auto_import, [monitor/2]}).
-
-behaviour(gen_server).
+-compile({no_auto_import, [monitor/2, now/0]}).
+-import(diameter_lib, [now/0]).
+
-export([add/1,
add_new/1,
del/1,