diff options
author | Sverker Eriksson <[email protected]> | 2011-12-01 20:13:57 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-02-09 17:07:05 +0100 |
commit | a17eaa7e2cc2f68fbc9bf5c924c5a230d650b9f1 (patch) | |
tree | d14848a8a9967fb0838c83635871778c8d2545c3 /erts/emulator/hipe/hipe_bif2.c | |
parent | 49c136df375a5c9a831f044eb2e3fb3352429cee (diff) | |
download | otp-a17eaa7e2cc2f68fbc9bf5c924c5a230d650b9f1.tar.gz otp-a17eaa7e2cc2f68fbc9bf5c924c5a230d650b9f1.tar.bz2 otp-a17eaa7e2cc2f68fbc9bf5c924c5a230d650b9f1.zip |
hipe,erts: Debug support for native call trace
Diffstat (limited to 'erts/emulator/hipe/hipe_bif2.c')
-rw-r--r-- | erts/emulator/hipe/hipe_bif2.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/erts/emulator/hipe/hipe_bif2.c b/erts/emulator/hipe/hipe_bif2.c index ee97541e15..4d42efc1cc 100644 --- a/erts/emulator/hipe/hipe_bif2.c +++ b/erts/emulator/hipe/hipe_bif2.c @@ -189,3 +189,10 @@ BIF_RETTYPE hipe_debug_bif_wrapper(BIF_ALIST_1) #endif /* ERTS_ENABLE_LOCK_CHECK && ERTS_SMP */ + +BIF_RETTYPE hipe_bifs_debug_native_called_2(BIF_ALIST_2) +{ + erts_printf("hipe_debug_native_called: %T(%T)\r\n", BIF_ARG_1, BIF_ARG_2); + BIF_RET(am_ok); +} + |