Re: pthread and GC

2015-05-13 Thread tcak via Digitalmars-d-learn
On Wednesday, 13 May 2015 at 07:29:51 UTC, Dicebot wrote: On Wednesday, 13 May 2015 at 07:04:39 UTC, tcak wrote: I am using pthread somewhere in program, and it creates an object. After a while, I see "core.thread.scanAllTypeImpl" error on gdb. Does this mean that pthread

Re: pthread and GC

2015-05-13 Thread Dicebot via Digitalmars-d-learn
On Wednesday, 13 May 2015 at 07:04:39 UTC, tcak wrote: I am using pthread somewhere in program, and it creates an object. After a while, I see "core.thread.scanAllTypeImpl" error on gdb. Does this mean that pthread and GC are incompatible? Any solution without making too much co

pthread and GC

2015-05-13 Thread tcak via Digitalmars-d-learn
I am using pthread somewhere in program, and it creates an object. After a while, I see "core.thread.scanAllTypeImpl" error on gdb. Does this mean that pthread and GC are incompatible? Any solution without making too much code changes?