创建线程时 遇到 SIGSEGV 信号

发布于 2022-07-21 08:38:15 字数 441 浏览 15 评论 4

I am a newer, and there is a simple example.

void * thr_fn(void * arg)
{
return NULL;
}

int main(void)
{
int err;
err = pthread_create(&ntid,NULL, thr_fn,NULL);
if ( 0 != err)
    printf("create failedn");
exit(0);
}

when i run it.i get a signal SIGSEGV . i don't kown why, and how i should do.
thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

送你一个梦 2022-07-27 01:25:41

我用的Red hat linux 9,这个代码也无错误
#include <pthread.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>

void * thr_fn(void * arg)
{
return NULL;
}

int main()
{

        pthread_t ntid;
        
                int err;

                err = pthread_create(&ntid,NULL, thr_fn,NULL);

                if ( 0 != err)
                        printf("create failedn");

                exit(0);

}

宫墨修音 2022-07-26 05:25:08

不知道您使用的是哪个版本的Linux,我记得Red hat linux 9的线程库好像是有问题的。

情归归情 2022-07-25 09:07:24

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

void * thr_fn(void * arg)
{
return NULL;
}

int main()
{

        pthread_t ntid;
       
                int err;

                err = pthread_create(&ntid,NULL, thr_fn,NULL);

                if ( 0 != err)
                        printf("create failedn");

                exit(0);

}

没有出现SIGSEGV

FC5  ,gcc 4.1.1

晒暮凉 2022-07-24 20:05:42

(1)官方说法是: SIGSEGV --- Segment Fault. The possible cases of your encountering this error are: 1.buffer overflow --- usually caused by a pointer reference out of range. 2.stack overflow --- please keep in mind that the default stack size is 8192K. 3.illegal file access --- file operations are forbidden on our judge system.

(2)SIGBUS与SIGSEGV信号的一般区别如下:1) SIGBUS(Bus error)意味着指针所对应的地址是有效地址,但总线不能正常使用该指针。通常是未对齐的数据访问所致。2) SIGSEGV(Segment fault)意味着指针所对应的地址是无效地址,没有物理内存对应该地址。

(3)Linux的mmap(2)手册页--------------------------------------------------------------------------使用映射可能涉及到如下信号SIGSEGV    试图对只读映射区域进行写操作SIGBUS     试图访问一块无文件内容对应的内存区域,比如超过文件尾的内存区域,或者以前有文件内容对应,现在为另一进程截断过的内存区域。--------------------------------------------------------------------------

弄清楚错误以后,就要查找产生错误的根源,一般我用以下两种方法:
(1)gcc -g 编译      ulimit -c 20000      之后运行程序,等core dump      最后gdb -c core <exec file>
     来查调用栈
(2)使用strace execfile,运行程序,出错时会显示那个系统调用错

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文