0

对于学校,我正在开发一个项目,该项目有 2 个正在运行的读取线程和 1 个围绕共享缓冲区工作的写入线程。这个共享缓冲区是我们自己编程的某种基于指针的列表。为了使其线程安全,我使用了 pthread_rw_locks 和一些 pthread_barriers。当我尝试运行我的代码时,它几乎立即崩溃,并且给了我一个分段错误。使用 gdb 调试器时,它给了我以下消息:

程序收到信号 SIGSEGV,分段错误。

__pthread_barrier_init (barrier=0x0, attr=0x0, count=2) 在 pthread_barrier_init.c:47

47 pthread_barrier_init.c:没有这样的文件或目录。

编译时,我包含了 -lpthread 标志,并且我还确保在使用它的每个文件中都包含 pthread.h。知道为什么我的程序找不到这个 c 文件吗?

编辑

这是我使用的代码片段。(这几乎是所有代码,但在这部分出错了)

这是我的主循环代码

int main(int argc, char*argv[])
{
    sbuffer_t* buffer;
    sbuffer_init(&buffer);
        return 0;
}

这是我的缓冲区代码

/**
 * basic node for the buffer, these nodes are linked together to create the buffer
 */
typedef struct sbuffer_node {
    struct sbuffer_node *next;  /**< a pointer to the next node*/
    sensor_data_t data;         /**< a structure containing the data */
} sbuffer_node_t;

/**
 * a structure to keep track of the buffer
 */
struct sbuffer {
    sbuffer_node_t *head;       /**< a pointer to the first node in the buffer */
    sbuffer_node_t *tail;       /**< a pointer to the last node in the buffer */
    pthread_rwlock_t* lock; 
    pthread_barrier_t* barrierRead; //Barrier to indicate that both reader threads have succesfully read the sensor reading
    pthread_barrier_t* barrierWrite; //Barrier to indicate that a sensor reading has been removed
    pthread_mutex_t* FIFOlock;
    int finished;
};

int sbuffer_init(sbuffer_t **buffer) {
    (*buffer) = malloc(sizeof(sbuffer_t));
    (*buffer)->lock=malloc(sizeof(pthread_rwlock_t));
    if (*buffer == NULL) return SBUFFER_FAILURE;
    pthread_rwlock_init((*buffer)->lock,NULL);
    pthread_rwlock_wrlock((*buffer)->lock); 
    pthread_barrier_init((*buffer)->barrierRead, NULL, READER_THREADS);
    pthread_barrier_init((*buffer)->barrierWrite, NULL, READER_THREADS);
    pthread_mutex_init((*buffer)->FIFOlock, NULL);
    (*buffer)->head = NULL;
    (*buffer)->tail = NULL;
    (*buffer)->finished = CONNMGR_NOT_FINISHED;
    pthread_rwlock_unlock((*buffer)->lock);
    return SBUFFER_SUCCESS;
}
4

1 回答 1

1

该错误不是错误,只是警告,它不是由您的程序发出的,而是由调试器发出的。调试器试图通过显示发生崩溃的源文件来帮助您。唉,那个源文件不是你程序的一部分,而是 pthreads 库的一部分。由于它不可用,调试器会通知您这一事实,否则您会希望看到问题出现的源代码行。gdb 有一个“显示源代码行”函数,该函数在引发信号/异常后被调用,并且该函数将始终打印一些内容:源代码行或警告消息。

于 2022-01-04T16:19:59.757 回答