vote up 0 vote down star

Can I use the code generated by flex/bison|lex/yacc in a multithreaded environment ? I'm afraid there are a lot of global variables. How can it be fixed ?

flag

60% accept rate
To you mean to parse various [unrelated] parts of some input over multiple threads? – mjv Nov 4 at 22:44

1 Answer

vote up 2 vote down check

With flex you can use %option reentrant and with bison %pure-parser to generate re-entrant code that does not have global data. You may still need some sort of synchronization to prevent multiple threads using the same data blocks at the same time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.