Re: Need Help on GLR Parser

2012-03-05 Thread John Levine
>I am new to Bison and trying to understand how GLR parser works. >As per the documentation, GLR parser creates separate parallel parsers in >case of conflicting actions found in action table. >Does it use fork() or clone() or Pthread to create those parallel process? No. It just creates internal

Need Help on GLR Parser

2012-03-05 Thread Leepika Jena
Hi, I am new to Bison and trying to understand how GLR parser works. As per the documentation, GLR parser creates separate parallel parsers in case of conflicting actions found in action table. Does it use fork() or clone() or Pthread to create those parallel process? If yes please point me that