Running…
worker3(19876) malloc: enabling scribbling to detect mods to free blocks
worker3(19876) malloc: checks heap after 1th operation and each 1 operations
worker3(19876) malloc: will abort on heap corruption
worker3(19876) malloc: MallocCheckHeap: PASSED check at 1th operation
The last line of this message then repeats over and over for every single malloc operation, which absolutely kills performance. I looked through the preferece settings but there is nothing about malloc there. Guard Malloc is not enabled. According to
the relevant environmental variables are MallocCheckHeapStart and MallocCheckHeapEach. These are apparently set to 1 for my execution. However, when I do a getInfo on my executable, no environmental variables show up in the list. I think there must be a secret place where these variables are set, but where is it???
Frank