创建线程时 遇到 SIGSEGV 信号
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我用的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);
}
不知道您使用的是哪个版本的Linux,我记得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);
}
没有出现SIGSEGV
FC5 ,gcc 4.1.1
(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,运行程序,出错时会显示那个系统调用错