Are posix regcomp and regexec threadsafe? In specific, on GNU libc?

帅比萌擦擦* 提交于 2019-11-29 09:31:36

http://www.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html

2.9.1 Thread-Safety

All functions defined by this volume of POSIX.1-2008 shall be thread-safe, except that the following functions1 need not be thread-safe.

...

regexec and regcomp are not in that list, so they are required to be thread-safe.

See also: http://www.opengroup.org/onlinepubs/9699919799/functions/regcomp.html

Part of the rationale text reads:

The interface is defined so that the matched substrings rm_sp and rm_ep are in a separate regmatch_t structure instead of in regex_t. This allows a single compiled RE to be used simultaneously in several contexts; in main() and a signal handler, perhaps, or in multiple threads of lightweight processes.

Can I use regexes in a multithreaded program without locking

Different ones, yes.

can I use the same regex_t at the same time in multiple threads?

In general: If you plan on doing so, you will have to do the locking around the functions, since few data structures do the locking for you.

regexec: Since regexec however takes a const regex_t, executing regexec seems safe for concurrent execution without locking. (After all, this is POSIX.1-2001, where stupid stuff like static buffers as used in the early BSD APIs usually don't occur anymore.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!