diff options
author | Rickard Green <[email protected]> | 2016-11-25 15:23:54 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2016-11-25 15:23:54 +0100 |
commit | ad8c29d74e4cf43f48f2ce11aeea451ad51a7e45 (patch) | |
tree | af20460b285b5807dcb77defd638d816dc5daf45 /erts/emulator/sys/unix | |
parent | 0fccaf80ab2348bbb99b7d2d8c25a3de77eebdeb (diff) | |
parent | f8aef2dcae7162b59efb9513442c9643c9f5159e (diff) | |
download | otp-ad8c29d74e4cf43f48f2ce11aeea451ad51a7e45.tar.gz otp-ad8c29d74e4cf43f48f2ce11aeea451ad51a7e45.tar.bz2 otp-ad8c29d74e4cf43f48f2ce11aeea451ad51a7e45.zip |
Merge branch 'maint'
* maint:
Fix initialization dependencies between time, lock-check and lcnt
Diffstat (limited to 'erts/emulator/sys/unix')
-rw-r--r-- | erts/emulator/sys/unix/sys.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/emulator/sys/unix/sys.c b/erts/emulator/sys/unix/sys.c index 51366adf1d..4b2edace0a 100644 --- a/erts/emulator/sys/unix/sys.c +++ b/erts/emulator/sys/unix/sys.c @@ -412,6 +412,10 @@ erts_sys_pre_init(void) erts_thr_init(&eid); +#ifdef ERTS_ENABLE_LOCK_CHECK + erts_lc_init(); +#endif + #ifdef ERTS_ENABLE_LOCK_COUNT erts_lcnt_init(); #endif |