关于 C 中的重入
Regarding reentrancy in C
如果您有一个来自库 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);
如果您有一个来自库 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);