diff options
author | Patrik Nyblom <[email protected]> | 2011-03-21 21:21:50 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2011-03-21 21:21:50 +0100 |
commit | 69c258c2ce9e0b43ec0bcbba442d1779b6b37fb7 (patch) | |
tree | ce59870f11a6712fe6627ce88c0e1d7c73e03dc2 /erts/emulator/beam/dist.c | |
parent | f861b4fdb3fd39e35f2951c53a73b30a98c7f973 (diff) | |
download | otp-69c258c2ce9e0b43ec0bcbba442d1779b6b37fb7.tar.gz otp-69c258c2ce9e0b43ec0bcbba442d1779b6b37fb7.tar.bz2 otp-69c258c2ce9e0b43ec0bcbba442d1779b6b37fb7.zip |
Make xml valgrind messages end up in xml log
Diffstat (limited to 'erts/emulator/beam/dist.c')
-rw-r--r-- | erts/emulator/beam/dist.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/erts/emulator/beam/dist.c b/erts/emulator/beam/dist.c index 02910fad90..044fd045a6 100644 --- a/erts/emulator/beam/dist.c +++ b/erts/emulator/beam/dist.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 1996-2010. All Rights Reserved. + * Copyright Ericsson AB 1996-2011. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -864,11 +864,15 @@ erts_dsig_send_group_leader(ErtsDSigData *dsdp, Eterm leader, Eterm remote) #include <valgrind/valgrind.h> #include <valgrind/memcheck.h> +#ifndef HAVE_VALGRIND_PRINTF_XML +#define VALGRIND_PRINTF_XML VALGRIND_PRINTF +#endif + # define PURIFY_MSG(msg) \ do { \ char buf__[1]; size_t bufsz__ = sizeof(buf__); \ if (erts_sys_getenv("VALGRIND_LOG_XML", buf__, &bufsz__) >= 0) { \ - VALGRIND_PRINTF("<erlang_error_log>" \ + VALGRIND_PRINTF_XML("<erlang_error_log>" \ "%s, line %d: %s</erlang_error_log>\n", \ __FILE__, __LINE__, msg); \ } else { \ |