Re: [ofa-general] [PATCH] librdmacm 1/2: add valgrind support to auto-tools configuration file

2007-09-05 Thread Dotan Barak
Hi Sean. What is the status of this patch? I would like to finish this issue before this code freeze. thanks Dotan ___ general mailing list general@lists.openfabrics.org http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general To

Re: [ofa-general] [PATCH] librdmacm 1/2: add valgrind support to auto-tools configuration file

2007-09-05 Thread Sean Hefty
What is the status of this patch? I would like to finish this issue before this code freeze. I was still trying to get caught back up from vacation, but will get to this today. - Sean ___ general mailing list general@lists.openfabrics.org

Re: [ofa-general] [PATCH] librdmacm 1/2: add valgrind support to auto-tools configuration file

2007-08-16 Thread Dotan Barak
Sean Hefty wrote: +if test x$with_valgrind = x || test x$with_valgrind = xno; then +want_valgrind=no +AC_DEFINE([NVALGRIND], 1, [Define to 1 to disable Valgrind annotations.]) +AC_CHECK_HEADER(valgrind/memcheck.h, +[AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1, +[Define to 1 if

RE: [ofa-general] [PATCH] librdmacm 1/2: add valgrind support to auto-tools configuration file

2007-08-16 Thread Sean Hefty
The resulting executables will still run without Valgrind, just a little bit more slowly than they otherwise would, but otherwise unchanged. When not running on valgrind, each client request consumes very few (eg. 7) instructions, so the resulting performance loss is negligible

Re: [ofa-general] [PATCH] librdmacm 1/2: add valgrind support to auto-tools configuration file

2007-08-16 Thread Dotan Barak
Sean Hefty wrote: The resulting executables will still run without Valgrind, just a little bit more slowly than they otherwise would, but otherwise unchanged. When not running on valgrind, each client request consumes very few (eg. 7) instructions, so the resulting performance loss is

Re: [ofa-general] [PATCH] librdmacm 1/2: add valgrind support to auto-tools configuration file

2007-08-15 Thread Sean Hefty
+if test x$with_valgrind = x || test x$with_valgrind = xno; then +want_valgrind=no +AC_DEFINE([NVALGRIND], 1, [Define to 1 to disable Valgrind annotations.]) +AC_CHECK_HEADER(valgrind/memcheck.h, +[AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1, +[Define to 1 if you have the