We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3df724 commit 4b49e72Copy full SHA for 4b49e72
lib/elixir/lib/system.ex
@@ -296,6 +296,14 @@ defmodule System do
296
do_halt(to_char_list(status), options)
297
end
298
299
+ # services_timeout/0 is an internal function only to be used by Elixir.
300
+
301
+ @doc false
302
+ @spec services_timeout() :: non_neg_integer | :infinity
303
+ def services_timeout() do
304
+ :elixir_compiler.get_timeout
305
+ end
306
307
# Support R15B
308
if List.member?(:erlang.module_info(:exports), { :halt, 2 }) do
309
defp do_halt(status, options), do: :erlang.halt(status, options)
0 commit comments