【Linux】pthread_t作为线程标识符存在隐患

14 篇文章 0 订阅

使用pthread_create创建的pthread_t作为线程标识符,存在同一个标识符,在不同的时间段可能标识了两个不同的线程

demo如下:

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

static void*
thread_start(void *arg)
{
    const char *str = arg;
    printf("%s\n", str);
    return NULL;
}

int main()
{
    pthread_t pid;
    int ret;
    const char *str;
    str = "thread_1";
    ret = pthread_create(&pid, NULL, &thread_start, str);
    if (ret)
    {
        printf("pthread_create 1 error. errno:%d\n", ret);
        return -1;
    }
    ret = pthread_join(pid, NULL);
    if (ret)
    {
        printf("pthread_join 1 error. errno:%d\n", ret);
        return -1;
    }
    printf("pthread_t 1:%d\n", pid);

    printf("\n");

    str = "thread_2";
    ret = pthread_create(&pid, NULL, &thread_start, str);
    if (ret)
    {
        printf("pthread_create 2 error. errno:%d\n", ret);
        return -1;
    }
    ret = pthread_join(pid, NULL);
    if (ret)
    {
         printf("pthread_join 2 error. errno:%d\n", ret);
        return -1;
    }
    printf("pthread_t 2:%d\n", pid);

    return 0;
}

运行结果:

thread_1
pthread_t 1:1245562624

thread_2
pthread_t 2:1245562624

对于如何争取获取线程id标识,请参考:

【Linux】获取线程ID方法_sidemap的博客-CSDN博客threadhttps://blog.csdn.net/sidemap/article/details/125151548?spm=1001.2014.3001.5501

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值