flex/lex yacc/bison 多线程环境

发布于 2024-08-09 12:54:42 字数 78 浏览 5 评论 0原文

我可以在多线程环境中使用由flex/bison|lex/yacc生成的代码吗?恐怕有很多全局变量。如何解决?

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 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

通知家属抬走 2024-08-16 12:54:42

借助 flex,您可以使用 %option reentrant 并使用 bison %pure-parser 来生成不具有全局数据的可重入代码。您可能仍然需要某种同步来防止多个线程同时使用相同的数据块。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文