- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在 pthread_mutex 上创建一个包装器,该包装器维护当前线程持有的所有互斥锁的列表。但是,我也使用了某些库代码,对此我不可能使用这个包装器。有什么办法可以得到这个通用 pthread_mutexes 的列表吗?
FWIW,我使用的是 Linux 主机。
最佳答案
您可以插入(例如通过 LD_PRELOAD
和 <dlfcn.h>
)pthread_mutex_lock()
, pthread_mutex_trylock()
, 和 pthread_mutex_unlock()
使用您自己的函数调用底层函数,但也维护每个线程数组/持有的互斥地址链。 (您可以使用 GCC 提供的 __thread
存储类关键字,相当于 C11 _Thread_local
来声明每个线程的变量。)
这是一个经过验证的工作示例。
生成文件 ,构建插入库和示例程序:
# SPDX-License-Identifier: CC0-1.0
CC := gcc
CFLAGS := -Wall -Wextra -O2
LDFLAGS := -pthread -ldl
BINS := libheld.so example
.PHONY: all clean run
all: clean $(BINS)
clean:
rm -f *.o $(BINS)
run: libheld.so example
env LD_PRELOAD=./libheld.so ./example
%.o: %.c
$(CC) $(CFLAGS) -c $^
libheld.so: libheld.c
$(CC) $(CFLAGS) -fPIC $^ -shared -Wl,-soname,$@ -ldl -o $@
example: example.o held.o
$(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@
请注意,Makefile 中的缩进必须使用 Tabs,因此如果您复制粘贴上述内容,则需要修复缩进,例如通过运行
sed -e 's|^ *|\t|' -i Makefile
.
// SPDX-License-Identifier: CC0-1.0
#define _GNU_SOURCE
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <dlfcn.h>
#include <errno.h>
static int (*original_lock)(pthread_mutex_t *) = NULL;
static int (*original_trylock)(pthread_mutex_t *) = NULL;
static int (*original_unlock)(pthread_mutex_t *) = NULL;
static int held_err = 0;
static __thread size_t held_max = 0;
static __thread size_t held_num = 0;
static __thread pthread_mutex_t **held_ptr = NULL;
int libheld_errno(void)
{
return __atomic_load_n(&held_err, __ATOMIC_SEQ_CST);
}
size_t libheld_count(void)
{
return held_num;
}
pthread_mutex_t *libheld_mutex(size_t i)
{
return (i < held_num) ? held_ptr[i] : NULL;
}
int pthread_mutex_lock(pthread_mutex_t *m)
{
int (*lock)(pthread_mutex_t *);
__atomic_load(&original_lock, &lock, __ATOMIC_SEQ_CST);
if (!lock) {
lock = dlsym(RTLD_NEXT, "pthread_mutex_lock");
if (!lock) {
__atomic_store_n(&held_err, ENOSYS, __ATOMIC_SEQ_CST);
return ENOSYS;
}
__atomic_store(&original_lock, &lock, __ATOMIC_SEQ_CST);
}
int retval = lock(m);
if (retval)
return retval;
if (held_num >= held_max) {
const int saved_errno = errno;
const size_t temp_max = (held_num | 127) + 121;
void *temp_ptr;
temp_ptr = realloc(held_ptr, temp_max * sizeof held_ptr[0]);
if (!temp_ptr) {
__atomic_store_n(&held_err, ENOMEM, __ATOMIC_SEQ_CST);
errno = saved_errno;
return 0;
}
held_max = temp_max;
held_ptr = temp_ptr;
}
held_ptr[held_num++] = m;
return 0;
}
int pthread_mutex_trylock(pthread_mutex_t *m)
{
int (*trylock)(pthread_mutex_t *);
__atomic_load(&original_trylock, &trylock, __ATOMIC_SEQ_CST);
if (!trylock) {
trylock = dlsym(RTLD_NEXT, "pthread_mutex_trylock");
if (!trylock) {
__atomic_store_n(&held_err, ENOSYS, __ATOMIC_SEQ_CST);
return ENOSYS;
}
__atomic_store(&original_trylock, &trylock, __ATOMIC_SEQ_CST);
}
int retval = trylock(m);
if (retval)
return retval;
if (held_num >= held_max) {
const int saved_errno = errno;
const size_t temp_max = (held_num | 127) + 121;
void *temp_ptr;
temp_ptr = realloc(held_ptr, temp_max * sizeof held_ptr[0]);
if (!temp_ptr) {
__atomic_store_n(&held_err, ENOMEM, __ATOMIC_SEQ_CST);
errno = saved_errno;
return 0;
}
held_max = temp_max;
held_ptr = temp_ptr;
}
held_ptr[held_num++] = m;
return 0;
}
int pthread_mutex_unlock(pthread_mutex_t *m)
{
int (*unlock)(pthread_mutex_t *);
__atomic_load(&original_unlock, &unlock, __ATOMIC_SEQ_CST);
if (!unlock) {
unlock = dlsym(RTLD_NEXT, "pthread_mutex_unlock");
if (!unlock) {
__atomic_store_n(&held_err, ENOSYS, __ATOMIC_SEQ_CST);
return ENOSYS;
}
__atomic_store(&original_unlock, &unlock, __ATOMIC_SEQ_CST);
}
int retval = unlock(m);
if (retval)
return retval;
size_t i = 0;
while (i < held_num) {
if (held_ptr[i] == m) {
held_num--;
if (i < held_num) {
memmove(held_ptr + i, held_ptr + i + 1, (held_num - i) * sizeof held_ptr[0]);
}
} else {
i++;
}
}
return 0;
}
持有.c ,实现获取互斥量跟踪信息所需的接口(interface)(互斥量跟踪是否可用,当前线程持有多少个互斥量,以及这些互斥量的地址):
// SPDX-License-Identifier: CC0-1.0
#define _POSIX_C_SOURCE 200809L
#define _GNU_SOURCE
#include <stdlib.h>
#include <pthread.h>
#include <dlfcn.h>
#include <errno.h>
static int libheld_errno_default(void)
{
return ENOSYS;
}
static size_t libheld_count_default(void)
{
return 0;
}
static pthread_mutex_t *libheld_mutex_default(size_t i)
{
(void)i; /* Silences warning about unused parameter; generates no code. */
return NULL;
}
static int (*held_errno_func)(void) = NULL;
static size_t (*held_count_func)(void) = NULL;
static pthread_mutex_t *(*held_mutex_func)(size_t) = NULL;
int held_errno(void)
{
int (*errno_func)(void);
__atomic_load(&held_errno_func, &errno_func, __ATOMIC_SEQ_CST);
if (!held_errno_func) {
errno_func = dlsym(RTLD_DEFAULT, "libheld_errno");
if (!errno_func)
errno_func = libheld_errno_default;
__atomic_store(&held_errno_func, &errno_func, __ATOMIC_SEQ_CST);
}
return errno_func();
}
size_t held_count(void)
{
size_t (*count_func)(void);
__atomic_load(&held_count_func, &count_func, __ATOMIC_SEQ_CST);
if (!count_func) {
count_func = dlsym(RTLD_DEFAULT, "libheld_count");
if (!count_func)
count_func = libheld_count_default;
__atomic_store(&held_count_func, &count_func, __ATOMIC_SEQ_CST);
}
return count_func();
}
pthread_mutex_t *held_mutex(size_t i)
{
pthread_mutex_t *(*mutex_func)(size_t);
__atomic_load(&held_mutex_func, &mutex_func, __ATOMIC_SEQ_CST);
if (!mutex_func) {
mutex_func = dlsym(RTLD_DEFAULT, "libheld_mutex");
if (!mutex_func)
mutex_func = libheld_mutex_default;
__atomic_store(&held_mutex_func, &mutex_func, __ATOMIC_SEQ_CST);
}
return mutex_func(i);
}
注意,因为直到运行时我们才知道互斥跟踪是否可用以及插入库是否加载,我们需要使用
-ldl
) 链接就足够了。
// SPDX-License-Identifier: CC0-1.0
#ifndef HELD_H
#define HELD_H
#include <stdlib.h>
#include <pthread.h>
/* Returns zero if mutex tracking is available, nonzero otherwise. */
extern int held_errno(void);
/* Returns the number of mutexes held by the current thread. */
extern size_t held_count(void);
/* Returns a pointer to the i'th mutex (0 up to held_count()-1) held by the current thread. */
extern pthread_mutex_t *held_mutex(size_t);
#endif /* HELD_H */
示例.c ,显示了跟踪持有的互斥锁的示例:
// SPDX-License-Identifier: CC0-1.0
#define _POSIX_C_SOURCE 200809L
#define _GNU_SOURCE
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <stdio.h>
#include <errno.h>
#include "held.h"
#ifndef LOCKS
#define LOCKS 5
#endif
void print_held(FILE *out)
{
if (!out)
out = stdout;
int err = held_errno();
if (err == ENOSYS) {
fprintf(out, "Mutex tracking is not available.\n");
return;
} else
if (err) {
fprintf(out, "Error in mutex tracking: %s.\n", strerror(err));
return;
}
size_t n = held_count();
if (n > 0) {
fprintf(out, "%zu %s held by current thread:\n", n, (n > 1) ? "mutexes" : "mutex");
for (size_t i = 0; i < n; i++) {
fprintf(out, "\t%p\n", held_mutex(i));
}
} else {
fprintf(out, "No mutexes held by current thread.\n");
}
}
int main(void)
{
pthread_mutex_t lock[LOCKS];
size_t i;
for (i = 0; i < LOCKS; i++)
pthread_mutex_init(lock + i, NULL);
for (i = 0; i < LOCKS; i++)
pthread_mutex_lock(lock + i);
print_held(stdout);
for (i = 0; i < LOCKS; i++)
pthread_mutex_unlock(lock + i);
print_held(stdout);
return EXIT_SUCCESS;
}
通过运行
make clean all
编译库和示例程序.
./example
,它只输出“互斥跟踪不可用”。
LD_PRELOAD=./libheld.so ./example
,它输出主线程持有的(默认5个)互斥锁。
ltrace -fttt -o logfile -e pthread_mutex_lock+pthread_mutex_trylock+pthread_mutex_unlock ./example
以便 ltrace 将每个 pthread_mutex_lock、pthread_mutex_trylock 和 pthread_mutex_unlock 调用记录到带有时间戳(自 Unix 纪元以来的秒数)的日志文件中。
关于c - 有没有办法找到当前 pthread 持有的 pthread_mutexes 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65904672/
我正在将一些 pthreads 代码添加到我使用 autotools 构建的 Linux 应用程序中。我收到关于未在 libpthreads 中链接的错误。所以我想在 autotools 中指定 pt
libpthread 库位于 Linux 系统的哪个目录中? 最佳答案 有多种方法可以找出这一点。 只需输入 find / -name 'libpthread.so' -print找到名为 libpt
pthread 属性对象是否需要在使用它们的对象的生命周期内存在,或者在使用它们后立即销毁它们是否安全?例如: // Create the mutex attributes. pthread_mute
到目前为止我读过的所有文档似乎都表明我的 vxWorks (6.8) 版本中存在 posix 线程支持,但是一个简单的测试应用程序无法按预期执行。来源如下: tTest.h #include cla
我试图找到指定 pthreads 标准的文档。我见过各种指向 IEEE 1003.1c-1995 的链接(即 Wikipedia 或 OpenGroup )。然而,当我在 IEEE 标准站点上搜索此文
我试图找到指定 pthreads 标准的文档。我见过各种指向 IEEE 1003.1c-1995 的链接(即 Wikipedia 或 OpenGroup )。然而,当我在 IEEE 标准站点上搜索此文
我在 MSVC 2010 上运行一个 pthread,我已经包含 pthreadVC2 .lib & .dll。来自以下网站 http://sourceware.org/pthreads-win32/
我的问题是: 如何在不更改其他 pthread 中的当前目录的情况下更改 pthread 中的当前目录,我找到了一个使用 openat() 函数的解决方案,但我没有找到任何解释它如何工作的示例。 使用
是否可以通过任何方式更改进程可以创建的 pthread 数量限制? 目前在我的 linux 系统上我可以创建大约 380 个线程,但我想增加它,只要内存可用。 最佳答案 减少用户的堆栈大小' ulim
问候。我正在尝试创建一个 autoconf 配置脚本,该脚本自动检查要使用的 pthread 选项,并且理想情况下,在使用 gcc 编译时指定 -pthread。 我希望 AX_PTHREAD 能够工
如何知道 pthread 是否死亡? 有办法检查 pthread 状态吗? 最佳答案 if(pthread_kill(the_thread, 0) == 0) { /* still runni
我正在从一个由互斥锁控制的固定大小的全局池中分配我的 pthread 线程特定数据。 (有问题的代码不允许动态分配内存;它允许使用的所有内存都由调用者作为单个缓冲区提供。pthreads 可能会分配内
在阅读了一些 MPI 规范后,我了解到,当使用 MPI_THREAD_SERIALIZED 进行初始化时,程序必须确保发生在不同线程中的 MPI_Send/Recv 调用不能重叠。换句话说,您需要一个
我尝试根据 this guide 安装 pthread win32 . 我将 pthreadVC2.dll 文件添加到 C:\Windows 并将 pthreadVC2.lib 文件添加到 C:\Pr
我有一个 pthreads 程序。我必须使用 Linux 中的 gcc -pthread(-pthreads 是无法识别的选项)和 Sun 中的 gcc -pthreads(-pthread 是无法识
我有一个包含文件名列表的文件,我想在其中搜索一个词并替换它我稍微修改了代码只是为了在这里只显示相关部分问题是如果我在该列表中只有一个文件,它不会用多线程处理它,因为线程只有在我有多个文件时才工作所以我
我正在编写一个 SMT 程序,并且正在尝试解决一个有趣的问题。 我需要所有函数一起退出,但是有些线程卡在障碍物上,即使我不希望它们这样做。 我的问题是:当我删除障碍时会发生什么?卡在屏障处的线程会释放
我阅读了有关 pthread 及其相关 API 的所有内容,以创建、锁定和同步不同的线程。但我经常发现线程池、消费者/生产者等词提示。我理解这些是 pthread 实现的模型。 任何人都可以让我知道
我在 man pthread_join 中读到,多个 pthread 不能加入一个已经加入的 pthread。还有另一种方法可以达到相同的结果吗?多个 pthread 挂起自己,直到某个特定的 pth
我知道 OpenMP 实际上只是一组编译成 pthread 的宏。有没有办法在编译的其余部分发生之前查看 pthread 代码?我正在使用 GCC 进行编译。 最佳答案 首先,OpenMP 不是一组简
我是一名优秀的程序员,十分优秀!