diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-06-16 10:07:23 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-06-16 23:15:27 +0200 |
commit | e14ca38380885e50a134b8c4297c44aec73ccb5f (patch) | |
tree | 64b65e4dcd6b7e94625e3d3e5bfe34520f4b6fc5 /erts/emulator | |
parent | 46817bf8f148c861dd510983bf76e9e6a21a3621 (diff) | |
download | otp-e14ca38380885e50a134b8c4297c44aec73ccb5f.tar.gz otp-e14ca38380885e50a134b8c4297c44aec73ccb5f.tar.bz2 otp-e14ca38380885e50a134b8c4297c44aec73ccb5f.zip |
Revert "Add thread index to allocator enomem dump slogan"
This reverts commit 5d5f9c1857029d7e8e1de141e29d20dd3de929be.
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/erl_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_alloc.c b/erts/emulator/beam/erl_alloc.c index d11f24220a..c9ac024743 100644 --- a/erts/emulator/beam/erl_alloc.c +++ b/erts/emulator/beam/erl_alloc.c @@ -1884,8 +1884,8 @@ erts_alc_fatal_error(int error, int func, ErtsAlcType_t n, ...) size = va_arg(argp, Uint); va_end(argp); erl_exit(1, - "%s: Cannot %s %lu bytes of memory (of type \"%s\", thread %d).\n", - allctr_str, op, size, t_str, ERTS_ALC_GET_THR_IX()); + "%s: Cannot %s %lu bytes of memory (of type \"%s\").\n", + allctr_str, op, size, t_str); break; } case ERTS_ALC_E_NOALLCTR: |