>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 data structures to track all of the currently active parse stacks. All of the parallel parses read the same stream of tokens. R's, John _______________________________________________ [email protected] https://lists.gnu.org/mailman/listinfo/help-bison
