当前位置:  技术问答>linux和unix

线程 Segmentation fault (core dumped)

    来源: 互联网  发布时间:2017-02-02

    本文导语:  小弟初学linux, 根据书上写了个小程序 #include  #include  #include  #include  void printids(const char *); void *start(void *); pthread_t ntid; void printids(const char *s) {         pid_t pid;         pthread_t tid;            ...

小弟初学linux, 根据书上写了个小程序
#include 
#include 
#include 
#include 

void printids(const char *);
void *start(void *);

pthread_t ntid;

void printids(const char *s)
{
        pid_t pid;
        pthread_t tid;
        
        pid = getpid();
        tid = pthread_self();
        printf("%s : pid is %u, tid is %u (0x%x)n", s, pid, tid, tid);
}

void *start(void *p)
{
        printids("new thread");

        return ((void *)0);
}

void main()
{
        int err;

        err = pthread_create(&ntid, NULL, start(NULL), NULL);
        if(err != 0)
        {
                printf("error, cann't create new thread");
                exit(0);
        }
        printids("main thread");
        printf("start sleepn");
        sleep(5);
        printf("end n");
        exit(0);
}

编译后执行,结果如下
[root@localhost test]# gcc thread.c -o thread -lpthread
[root@localhost test]# ./thread
new thread : pid is 2442, tid is 4008711936 (0xeef01700)
main thread : pid is 2442, tid is 4008711936 (0xeef01700)
start sleep
Segmentation fault (core dumped)

当我把程序中  sleep(5)  注释掉后编译执行正常,结果为
[root@localhost test]# gcc thread.c -o thread -lpthread
[root@localhost test]# ./thread
new thread : pid is 2830, tid is 2600584960 (0x9b01c700)
main thread : pid is 2830, tid is 2600584960 (0x9b01c700)
start sleep
end 

我不明白程序哪里出错了

而且 main thread的线程id,和新创建线程new thread 的线程id 相同, 按说应该不同的

我的系统是centos6.2,gcc version 4.4.6

请高手指点

|
因为你的主线程比你的子线程先结束了,你加sleep后,主线程就在子线程之后结束了。

|
可以使用函数pthread_join,让主线程等一下子线程

|
printf不是线程安全的函数哦, 因为它们都操作FILE *stdin, 所以你最好让主线程pthread_join返回后再输出父进程的信息.

|
++

|
 getpid()得到的是进程id,所以是一样的

|
pid是进程id,你是要获取线程标识用pthread_self()

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Java中多线程相关类Thread介绍
  • 一个进程创建了两个线程,如何使得当任何一个线程(比如线程a)结束时,同时也结束线程b,也就是使两个线程一起死掉,怎么办呢?
  • c#多线程更新窗口(winform)GUI的数据
  • java 线程,对当前线程(非主线程)调用sleep,为什么主线程(窗口)也没反应了
  • Windows和Linux下C++类成员方法作为线程函数方法介绍
  • 如何实现一个线程组内多线程的非同不执行,即一个线程执行完毕后再执行下一个线程???
  • c++的boost库多线程(Thread)编程(线程操作,互斥体mutex,条件变量)详解
  • 请问:进程创建的线程是怎样运行的啊,线程的处理函数运行完了,线程就退出了吗?
  • Linux下GCC内置原子操作函数(多线程资源访问)介绍
  • 关于线程的问题,什么样的线程不是active线程?
  • 请问Linux核心支持多线程吗?开发库有线程库吗?线程好用吗?(稳定?)
  • 请问,在一个进程中创建多线程时如何能避免不同的线程获得同一个线程标识
  • 我的一个多线程服务里, 总是有一个线程莫名其妙的变成僵尸线程。
  • 编程语言 iis7站长之家
  • 如何在一个线程中启动另外一个线程,然后本线程就退出?
  • 我要设置一个线程的优先级, 这个属性结构并没有线程的id,它怎么知道是设置哪个线程呢?
  • 请问在java多线程中,是只有run(){}内的代码运行在一个新线程下呢?还是这个类中的代码都运行在一个新线程下?
  • gcc链接的库,分不分单线程版本的和多线程版本的?
  • 内核栈~ 内核线程 ~用户线程 之间关系 问题
  • 子线程的数据如何返回给主线程?
  • 如果父线程死掉 那么子线程会不会死掉呢


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3