aboutsummaryrefslogtreecommitdiff
path: root/server/_build/default/lib/bcrypt/src/bcrypt_sup.erl
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@pobox.com>2025-09-03 21:15:36 -0400
committerCalvin Morrison <calvin@pobox.com>2025-09-03 21:15:36 -0400
commit49fa5aa2a127bdf8924d02bf77e5086b39c7a447 (patch)
tree61d86a7705dacc9fddccc29fa79d075d83ab8059 /server/_build/default/lib/bcrypt/src/bcrypt_sup.erl
i vibe coded itHEADmaster
Diffstat (limited to 'server/_build/default/lib/bcrypt/src/bcrypt_sup.erl')
-rw-r--r--server/_build/default/lib/bcrypt/src/bcrypt_sup.erl28
1 files changed, 28 insertions, 0 deletions
diff --git a/server/_build/default/lib/bcrypt/src/bcrypt_sup.erl b/server/_build/default/lib/bcrypt/src/bcrypt_sup.erl
new file mode 100644
index 0000000..502a6a3
--- /dev/null
+++ b/server/_build/default/lib/bcrypt/src/bcrypt_sup.erl
@@ -0,0 +1,28 @@
+%% @copyright 2011 Hunter Morris
+%% @doc Implementation of `supervisor' behaviour.
+%% @private
+%% @end
+%% Distributed under the MIT license; see LICENSE for details.
+-module(bcrypt_sup).
+-author('Hunter Morris <huntermorris@gmail.com>').
+
+-behaviour(supervisor).
+
+-export([start_link/0, init/1]).
+
+start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+
+init([]) ->
+ PortChildren
+ = [{bcrypt_port_sup, {bcrypt_port_sup, start_link, []}, permanent,
+ 16#ffffffff, supervisor, [bcrypt_port_sup]},
+ {bcrypt_pool, {bcrypt_pool, start_link, []}, permanent,
+ 16#ffffffff, worker, [bcrypt_pool]}],
+ NifChildren
+ = [{bcrypt_nif_pool_sup, {bcrypt_nif_pool_sup, start_link, []}, permanent,
+ 16#ffffffff, supervisor, [bcrypt_nif_pool_sup]}],
+ case application:get_env(bcrypt, mechanism) of
+ undefined -> {stop, no_mechanism_defined};
+ {ok, nif} -> {ok, {{one_for_all, 15, 60}, NifChildren}};
+ {ok, port} -> {ok, {{one_for_all, 15, 60}, PortChildren}}
+ end.