diff options
author | Lukas Larsson <[email protected]> | 2017-07-18 14:30:55 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-07-18 14:30:55 +0200 |
commit | aa8df5238a20a539bc90deb68aa39050197ba725 (patch) | |
tree | bf5108a9a9304b8377b9e5a922274daef6f0ba20 /erts/emulator/hipe/hipe_native_bif.h | |
parent | de5cfabdad61d45a112d95e24ac44e3f51a4bd18 (diff) | |
parent | 7b5a1a7e787570ff13805a150e4c7c13bda8b0a6 (diff) | |
download | otp-aa8df5238a20a539bc90deb68aa39050197ba725.tar.gz otp-aa8df5238a20a539bc90deb68aa39050197ba725.tar.bz2 otp-aa8df5238a20a539bc90deb68aa39050197ba725.zip |
lukas/erts/remove-non-smp/OTP-14518
Remove support for the non-smp emulators
Diffstat (limited to 'erts/emulator/hipe/hipe_native_bif.h')
-rw-r--r-- | erts/emulator/hipe/hipe_native_bif.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.h b/erts/emulator/hipe/hipe_native_bif.h index 38f874888b..cbc7ab8dc6 100644 --- a/erts/emulator/hipe/hipe_native_bif.h +++ b/erts/emulator/hipe/hipe_native_bif.h @@ -107,11 +107,7 @@ void hipe_emasculate_binary(Eterm); /* * Stuff that is different in SMP and non-SMP. */ -#ifdef ERTS_SMP int hipe_bs_put_big_integer(Process*, Eterm, Uint, byte*, unsigned, unsigned); -#else -int hipe_bs_put_big_integer(Eterm, Uint, byte*, unsigned, unsigned); -#endif AEXTERN(Eterm,nbif_check_get_msg,(Process*)); Eterm hipe_check_get_msg(Process*); @@ -122,12 +118,10 @@ BIF_RETTYPE hipe_bifs_debug_native_called_2(BIF_ALIST_2); /* * SMP-specific stuff */ -#ifdef ERTS_SMP AEXTERN(void,nbif_atomic_inc,(void)); AEXTERN(void,nbif_clear_timeout,(Process*)); void hipe_atomic_inc(int*); void hipe_clear_timeout(Process*); -#endif #define BIF_LIST(M,F,A,B,C,I) AEXTERN(Eterm,nbif_##C,(void)); #include "erl_bif_list.h" |