From 91664c356f4eb1f31a90f36d369bceb386466f42 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 7 Feb 2015 19:36:32 -0800 Subject: * Makefile (CFLAGS): Removed puzzling, unnecessary definitions of XMALLOC, XCALLOC, XREALLOC and XFREE for $(MPI_OBJS). MPI does not use such macros and the allocator is already retargetted to use the TXR one. * mpi-patches/use-txr-allocator: In this patch, we don't need external declaration for chk_malloc or chk_realloc because they are not used. Only chk_calloc is used. * mpi-patches/add-bitops: Refreshed. * mpi-patches/add-mp-hash: Likewise. * mpi-patches/add-mp-set-intptr: Likewise. * mpi-patches/add-mpi-toradix-with-case: Likewise. * mpi-patches/bit-search-optimizations: Likewise. * mpi-patches/export-mp-eq: Likewise. * mpi-patches/faster-square-root: Likewise. * mpi-patches/fix-bad-shifts: Likewise. * mpi-patches/fix-ctype-warnings: Likewise. * mpi-patches/fix-mult-bug: Likewise. * mpi-patches/mpi-set-double-intptr: Likewise. * mpi-patches/mpi-set-mpi-word: Likewise. * mpi-patches/mpi-to-double: Likewise. --- mpi-patches/mpi-to-double | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mpi-patches/mpi-to-double') diff --git a/mpi-patches/mpi-to-double b/mpi-patches/mpi-to-double index dae195b2..3facb923 100644 --- a/mpi-patches/mpi-to-double +++ b/mpi-patches/mpi-to-double @@ -1,7 +1,7 @@ Index: mpi-1.8.6/mpi.c =================================================================== ---- mpi-1.8.6.orig/mpi.c 2014-02-19 19:00:21.279452088 -0800 -+++ mpi-1.8.6/mpi.c 2014-02-19 19:01:29.294491437 -0800 +--- mpi-1.8.6.orig/mpi.c 2015-02-07 19:33:11.780282866 -0800 ++++ mpi-1.8.6/mpi.c 2015-02-07 19:33:14.608233363 -0800 @@ -14,6 +14,7 @@ #include #include @@ -9,8 +9,8 @@ Index: mpi-1.8.6/mpi.c +#include typedef unsigned char mem_t; - extern mem_t *chk_malloc(size_t size); -@@ -2335,6 +2336,29 @@ + extern mem_t *chk_calloc(size_t n, size_t size); +@@ -2333,6 +2334,29 @@ /* }}} */ @@ -42,8 +42,8 @@ Index: mpi-1.8.6/mpi.c Index: mpi-1.8.6/mpi.h =================================================================== ---- mpi-1.8.6.orig/mpi.h 2014-02-19 18:59:53.335849528 -0800 -+++ mpi-1.8.6/mpi.h 2014-02-19 19:01:29.302491325 -0800 +--- mpi-1.8.6.orig/mpi.h 2015-02-07 19:33:08.688337078 -0800 ++++ mpi-1.8.6/mpi.h 2015-02-07 19:33:14.612233293 -0800 @@ -187,6 +187,11 @@ #endif /* end MP_NUMTH */ -- cgit v1.2.3