diff options
author | Björn Gustavsson <[email protected]> | 2017-10-16 15:12:06 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-11-21 12:45:38 +0100 |
commit | 3b964e8dbaa0cd73ca7a983b3ce948e0dbd2c35c (patch) | |
tree | 3cf091c1710c97d7b730a10a726618acc4e51c62 /erts/emulator/beam/global.h | |
parent | 892dd54fa032de737defbee22534117b1c261c60 (diff) | |
download | otp-3b964e8dbaa0cd73ca7a983b3ce948e0dbd2c35c.tar.gz otp-3b964e8dbaa0cd73ca7a983b3ce948e0dbd2c35c.tar.bz2 otp-3b964e8dbaa0cd73ca7a983b3ce948e0dbd2c35c.zip |
Use base64 encoding in crash dumps
This will reduce the size of crash dumps, especially if
there are large binaries.
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 440723aea6..9505942307 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -966,6 +966,7 @@ void process_info(fmtfn_t, void *); void print_process_info(fmtfn_t, void *, Process*); void info(fmtfn_t, void *); void loaded(fmtfn_t, void *); +void erts_print_base64(fmtfn_t to, void *to_arg, byte* src, Uint size); /* sighandler sys.c */ int erts_set_signal(Eterm signal, Eterm type); |