From: Bruno H. <br...@cl...> - 2017-05-23 08:35:37
|
Hi Vladimir, > I disabled SINGLEMAP_MEMORY model in MT builds. The problem is that this > model assumes single fixed stack address range while every thread requires > it's own stack which is currently malloc-ed. What is the good way to > workaround this? Allocate new threads stacks in the above range? You mean, the only problem with MT and SINGLEMAP_MEMORY was that in spvw.d lines 3230..3245 we allocate one STACK range only, not multiple ones? If yes, I would try to keep SINGLEMAP_MEMORY turned on and disable only SINGLEMAP_MEMORY_STACK. Bruno |