summaryrefslogtreecommitdiff
path: root/src/extauth.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/extauth.erl')
-rw-r--r--src/extauth.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extauth.erl b/src/extauth.erl
index ace340f7..c617e6c2 100644
--- a/src/extauth.erl
+++ b/src/extauth.erl
@@ -171,7 +171,7 @@ code_change(_OldVsn, State, _Extra) ->
%%%===================================================================
-spec curr_time() -> non_neg_integer().
curr_time() ->
- p1_time_compat:monotonic_time(milli_seconds).
+ erlang:monotonic_time(millisecond).
-spec start_port(string()) -> {port(), integer() | undefined}.
start_port(Path) ->
@@ -188,7 +188,7 @@ call_port(Server, Args) ->
call_port(Server, Args, ?CALL_TIMEOUT).
call_port(Server, Args, Timeout) ->
- StartTime = p1_time_compat:monotonic_time(milli_seconds),
+ StartTime = erlang:monotonic_time(millisecond),
Pool = pool_name(Server),
PoolSize = pool_size(Server),
I = p1_rand:round_robin(PoolSize),