aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_init.c
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2017-05-16 10:47:44 +0200
committerGitHub <[email protected]>2017-05-16 10:47:44 +0200
commit8fd3466d1fef48a09a45f7fd7f031addf3855dc2 (patch)
tree86164a6d5475cd80378af352d6734044b1a1f513 /erts/emulator/beam/erl_init.c
parent836d89d9423b4aa01fc887286b6a97721f62c02e (diff)
parente6437e926340c3024449b83826f8013d187caaed (diff)
downloadotp-8fd3466d1fef48a09a45f7fd7f031addf3855dc2.tar.gz
otp-8fd3466d1fef48a09a45f7fd7f031addf3855dc2.tar.bz2
otp-8fd3466d1fef48a09a45f7fd7f031addf3855dc2.zip
Merge pull request #1436 from garazdawi/lukas/erts/remove_unused_functions
erts: Remove old unused functions
Diffstat (limited to 'erts/emulator/beam/erl_init.c')
-rw-r--r--erts/emulator/beam/erl_init.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c
index fb38327d02..ac99f043e6 100644
--- a/erts/emulator/beam/erl_init.c
+++ b/erts/emulator/beam/erl_init.c
@@ -309,30 +309,6 @@ void erl_error(char *fmt, va_list args)
static int early_init(int *argc, char **argv);
-void
-erts_short_init(void)
-{
-
- int ncpu;
- int time_correction;
- ErtsTimeWarpMode time_warp_mode;
-
- set_default_time_adj(&time_correction,
- &time_warp_mode);
- ncpu = early_init(NULL, NULL);
- erl_init(ncpu,
- ERTS_DEFAULT_MAX_PROCESSES,
- 0,
- ERTS_DEFAULT_MAX_PORTS,
- 0,
- 0,
- time_correction,
- time_warp_mode,
- ERTS_NODE_TAB_DELAY_GC_DEFAULT,
- ERTS_DB_SPNCNT_NORMAL);
- erts_initialized = 1;
-}
-
static void
erl_init(int ncpu,
int proc_tab_sz,