diff options
author | Lukas Larsson <[email protected]> | 2017-05-03 17:18:44 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-05-16 10:46:40 +0200 |
commit | e6437e926340c3024449b83826f8013d187caaed (patch) | |
tree | 4610fa8a5cd53db29978cfd7e4c73a109a52955f /erts/emulator/beam/erl_init.c | |
parent | 95e22b101b73087630fd58ae2487a91fcf004334 (diff) | |
download | otp-e6437e926340c3024449b83826f8013d187caaed.tar.gz otp-e6437e926340c3024449b83826f8013d187caaed.tar.bz2 otp-e6437e926340c3024449b83826f8013d187caaed.zip |
erts: Remove old unused functions
The functions have been found using: https://github.com/caolanm/callcatcher
Diffstat (limited to 'erts/emulator/beam/erl_init.c')
-rw-r--r-- | erts/emulator/beam/erl_init.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c index eaaf5c911a..2527732eb3 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, |