]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Debug malloc/new/free/delete
authorrahuel <rahuel@opencascade.com>
Tue, 22 Jan 2008 12:49:55 +0000 (12:49 +0000)
committerrahuel <rahuel@opencascade.com>
Tue, 22 Jan 2008 12:49:55 +0000 (12:49 +0000)
src/ParaMEDMEM/test_AllToAllDEC.cxx
src/ParaMEDMEM/test_AllToAllvDEC.cxx

index b273fc84a9f039b157714bc218d017786b9100c6..eb787692e7c544002f7774cf3b058a082b820a83 100644 (file)
@@ -81,10 +81,10 @@ int main(int argc, char** argv) {
 
   int ireq ;
   for ( ireq = 0 ; ireq < maxreq ; ireq++ ) {
-//    int * sendbuf = new int[datamsglength*size] ;
+    int * sendbuf = new int[datamsglength*size] ;
     cout << "test" << myrank << " ireq " << ireq << " RecvRequestIdsSize "
          << mpi_access->RecvRequestIdsSize() << endl ;
-    int * sendbuf = (int *) malloc( sizeof(int)*datamsglength*size) ;
+//    int * sendbuf = (int *) malloc( sizeof(int)*datamsglength*size) ;
     int j ;
     for ( j = 0 ; j < datamsglength*size ; j++ ) {
        sendbuf[j] = myrank*1000000 + ireq*1000 + j ;
index 9a4366364a927ccc285224ba6392fd6c7cde0369..e65df75bb5666f4a48a96d85d925d805bab34b48 100644 (file)
@@ -87,8 +87,8 @@ int main(int argc, char** argv) {
 
   int ireq ;
   for ( ireq = 0 ; ireq < maxreq ; ireq++ ) {
-//    int * sendbuf = new int[datamsglength*size] ;
-    int * sendbuf = (int *) malloc( sizeof(int)*datamsglength*size) ;
+    int * sendbuf = new int[datamsglength*size] ;
+//    int * sendbuf = (int *) malloc( sizeof(int)*datamsglength*size) ;
     int j ;
     for ( j = 0 ; j < datamsglength*size ; j++ ) {
        sendbuf[j] = myrank*1000000 + ireq*1000 + j ;