I wrote a python program which makes system calls to run a pyroot program multiple times (dirty, I know).
I get this error.
I boiled it down to the following program which loops:
import os, sys
for i in range(5):
os.system("python rootImporter.py")
And this code which imports ROOT.
import ROOT
print "Imported ROOT . . ."
Running the looping code gives the "*** glibc detected *** " message 5 times.
I’m using the ROOT version on clued0:
root/Linux-2-4/v4_04_02b_fbits_trefarray7_eh-GCC_3_4_3-opt/bin/root.exe
The core file says " Core was generated by `python rootImporter.py’." in gdb.
I’ve worked around this problem but I thought I’d still report it.