[fonc] COLA

2010-05-17 Thread Julian Leviston
I've got a bit of a... query I guess... I'm quite interested in learning about how COLA works. Is this a candidate interest for COLA itself? Is this one of the goals of the FONC group? To avail the learning of others? Or is only directed at children? As far as I can see, it'd be incredibly

Re: [fonc] COLA multithreading support + thread-local aspects

2009-06-18 Thread Ingo Jaeckel
hello tim, thank you so much for the hint to use fonc-stable. in fonc-stable i can apply the change (define USE_GC 0) to the libid.c file AND compile everthing in the root directory and in function/examples/libjolt. executing the ./jest file causes a segfault. however, i can use the

Re: [fonc] COLA multithreading support + thread-local aspects

2009-06-17 Thread Ingo Jaeckel
hello tim, i want to disable the garbage collector, too. you wrote This can be done by setting USE_GC to 0 in object/id/libid.c. this does not work for me. i did a fresh svn checkout of the repository, applied the change to the libid.c file and called make. it compiles a lot of things but

Re: [fonc] COLA multithreading support + thread-local aspects

2009-06-17 Thread Tim Molderez
Hi Ingo, Setting USE_GC to 0 in libid.c was really the one and only step I needed to take to disable the garbage collector. I've tested this both on the COLA version that came with the delMDSoC download and with the current stable version of COLA. I've retrieved this current stable version

Re: [fonc] COLA multithreading support + thread-local aspects

2009-06-16 Thread Tim Molderez
Hi Mike, I have encountered GC issues as well. I think an error message with something about GC_INNER_STACK_CLEAR was displayed infinitely at the end of my multithreaded programs... The quickest way to solve that problem was to simply disable the garbage collector, which is what I've done.