gpt4 book ai didi

c - 关于 C 中的重入

转载 作者:行者123 更新时间:2023-12-04 10:56:50 24 4
gpt4 key购买 nike

如果您有一个来自库 f_func() 的函数并且您知道它不可重入,您将如何在线程环境 (POSIX) 中使用它?您无法访问库的源代码。

最佳答案

您可以将其包装在互斥体中。这是一个示例用法:

pthread_mutex_t f_func_mutex = PTHREAD_MUTEX_INITIALIZER;

pthread_mutex_lock(&f_func_mutex);

f_func();

// if f_func has "side effects", such as setting a global, you'll want to grab
// the value within the locked region:
int local = global_set_by_f_func;

pthread_mutex_unlock(&f_func_mutex);

关于c - 关于 C 中的重入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39087440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com