Skip to content

Valgrind Error Details

back to process details
back to processes overview
Executable/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/platforms/relwithdebinfo_gnu/bin/ProjectXExec
PID26196
PPID16382
Unique ID0xdad
Text137 bytes in 1 blocks are still reachable in loss record 3,500 of 4,065
Auxiliary
Suppression{
   <insert_a_suppression_name_here>
   Memcheck:Leak
   match-leak-kinds: reachable
   fun:malloc
   fun:open_path
   fun:_dl_map_object
   fun:dl_open_worker
   fun:_dl_catch_error
   fun:_dl_open
   fun:dlopen_doit
   fun:_dl_catch_error
   fun:_dlerror_run
   fun:dlopen@@GLIBC_2.2.5
   fun:PXLoadEquationSet
   fun:PXInitializeEquationSet
   fun:PXInitializePre
   fun:main
}

Stacktrace

Object/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so
Functionmalloc
File/Line
CodeSource code not available

Object/lib/x86_64-linux-gnu/ld-2.19.so
Functionopen_path
File/Line/build/eglibc-3GlaMS/eglibc-2.19/elf/dl-load.c:2271
CodeSource code not available

Object/lib/x86_64-linux-gnu/ld-2.19.so
Function_dl_map_object
File/Line/build/eglibc-3GlaMS/eglibc-2.19/elf/dl-load.c:2423
CodeSource code not available

Object/lib/x86_64-linux-gnu/ld-2.19.so
Functiondl_open_worker
File/Line/build/eglibc-3GlaMS/eglibc-2.19/elf/dl-open.c:235
CodeSource code not available

Object/lib/x86_64-linux-gnu/ld-2.19.so
Function_dl_catch_error
File/Line/build/eglibc-3GlaMS/eglibc-2.19/elf/dl-error.c:187
CodeSource code not available

Object/lib/x86_64-linux-gnu/ld-2.19.so
Function_dl_open
File/Line/build/eglibc-3GlaMS/eglibc-2.19/elf/dl-open.c:661
CodeSource code not available

Object/lib/x86_64-linux-gnu/libdl-2.19.so
Functiondlopen_doit
File/Line/build/eglibc-3GlaMS/eglibc-2.19/dlfcn/dlopen.c:66
CodeSource code not available

Object/lib/x86_64-linux-gnu/ld-2.19.so
Function_dl_catch_error
File/Line/build/eglibc-3GlaMS/eglibc-2.19/elf/dl-error.c:187
CodeSource code not available

Object/lib/x86_64-linux-gnu/libdl-2.19.so
Function_dlerror_run
File/Line/build/eglibc-3GlaMS/eglibc-2.19/dlfcn/dlerror.c:163
CodeSource code not available

Object/lib/x86_64-linux-gnu/libdl-2.19.so
Functiondlopen@@GLIBC_2.2.5
File/Line/build/eglibc-3GlaMS/eglibc-2.19/dlfcn/dlopen.c:87
CodeSource code not available

Object/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/platforms/relwithdebinfo_gnu/bin/ProjectXExec
FunctionPXLoadEquationSet
File/Line/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/src/PXEquationSet.c:224
Code
214 /*                                                                   */
215 /*   OUTPUTS: None                                                   */
216 /*                                                                   */
217 /*   RETURNS: error code                                             */
218 /*-------------------------------------------------------------------*/
219 
220   /* Write Equation set being used */
221   PXPrintf("Using EquationSetLibrary = %s\n", libtitle);
222 
223   /* Open Dynamic Library */
224   PXEqnLibHandle = PXDLOpen (libtitle);
225   if (!PXEqnLibHandle) {
226     printf("Error Loading library %s\n", libtitle);
227     printf("Error during EqnLib lt_dlopen(): %s\n", dlerror());
228     return PXError(PX_DYNAMIC_LIBRARY_ERROR);
229   }

Object/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/platforms/relwithdebinfo_gnu/bin/ProjectXExec
FunctionPXInitializeEquationSet
File/Line/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/src/PXRunSolver.c:170
Code
0160 
0161   if (myRank==0)
0162     PXPrintf("Using Equation Set = %s\n", PXE_EquationSetName[EquationSet]);
0163 
0164 #if (STATIC != 1)
0165   PXDLInit();
0166   /* Get LibEquationSet */
0167   PXErrorReturnPXGetLibEquationSetNameEquationSet, LibEquationSet ) );
0168 
0169   /* Load equation set */
0170   PXErrorReturnPXLoadEquationSetLibEquationSet ) );
0171 #endif
0172 
0173   return PX_NO_ERROR;
0174 /* PXInitializeEquationSet */
0175 

Object/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/platforms/relwithdebinfo_gnu/bin/ProjectXExec
FunctionPXInitializePre
File/Line/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/src/PXRunSolver.c:219
Code
0209   /* Begin Initialization */
0210   /*----------------------*/
0211 
0212   /* Read Job file parameters */
0213   PXErrorReturnPXReadJobFileParametersJobFile, &JobFileParameter ) );
0214 
0215   /* Read Knob file parameters */
0216   PXErrorReturnPXReadKnobFileParametersJobFileParameter, &KnobFileParameter) );
0217 
0218   /* Initialize equation set */
0219   PXErrorReturnPXInitializeEquationSetJobFileParameter ) );
0220 
0221   /* Create PX_All object */
0222   PXErrorReturnPXCreateAllppxa ) );
0223   pxa = *ppxa;
0224 

Object/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/platforms/relwithdebinfo_gnu/bin/ProjectXExec
Functionmain
File/Line/home1/jenkins/workspace/ProjectX_Weekly/PX_ARC/relwithdebinfo_gnu/buildnode/reynolds/src/PXRunSolver.c:956
Code
0946     PXPrintf("Where casename is the name of the job file.\n");
0947     PXPrintf("\n");
0948     return PX_READWRITE_ERROR;
0949   }
0950 
0951 #ifdef PX_SHADOW
0952   printf("\nWARNING: You Are Running With Shadow Basis Turned On.\n\n");
0953 #endif
0954 
0955   /* Perform non-repeated initializations */
0956   PXErrorReturnPXInitializePreJobFile, &pxa ) );
0957 #ifdef PX_TIMING
0958   PXBarrier();
0959   c1=PXclock();
0960   PXPrintf("Time : (InitializePre) = %f\n",  c1 - c0 );
0961 #endif