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

为什么Segmentation fault呢?

    来源: 互联网  发布时间:2015-05-21

    本文导语:  这个程序老是报错,说“Segmentation fault”;知道是server.c的18行错了,但不会改啊,请各位大哥指教指教~~~ 代码如下: server.c #include "cliserv.h" int main(int argc,char* argv[]) { int server_fifo_fd,client_fifo_fd; struct data_to_pass m...

这个程序老是报错,说“Segmentation fault”;知道是server.c的18行错了,但不会改啊,请各位大哥指教指教~~~
代码如下:
server.c

#include "cliserv.h"
int main(int argc,char* argv[])
{
int server_fifo_fd,client_fifo_fd;
struct data_to_pass my_data;
int nbytes;
char client_fifo_name[256];
char *tmp_char_ptr;

mkfifo(SERVER_FIFO_NAME,0777);
server_fifo_fd=open(SERVER_FIFO_NAME,O_RDONLY);
if(server_fifo_fd==-1)
err_exit("Server fifo failure");
printf("server_fifo_fd = %dn",server_fifo_fd);

/*sleep(10);*/
do{
nbytes=read(server_fifo_fd,&my_data,sizeof(my_data));
printf("read %d bytes",nbytes);
if(nbytes>0)
{
tmp_char_ptr=my_data.text_data;
printf("read %sn",*tmp_char_ptr);
while(*tmp_char_ptr)
{
*tmp_char_ptr=toupper(*tmp_char_ptr);
printf("ok:recive %sn",*tmp_char_ptr);
tmp_char_ptr++;
}
sprintf(client_fifo_name,CLIENT_FIFO_NAME,my_data.client_pid);
client_fifo_fd=open(client_fifo_name,O_WRONLY);
if(client_fifo_fd!=-1)
{
write(client_fifo_fd,&my_data,sizeof(my_data));
close(client_fifo_fd); 


}
while(nbytes>0);
close(server_fifo_fd);
unlink(SERVER_FIFO_NAME);
return 0;
}

client.c

#include "cliserv.h"
int main()
{
int server_fifo_fd,client_fifo_fd;
struct data_to_pass my_request;
int times_to_send;
char client_fifo_name[256];
pid_t mypid;

server_fifo_fd=open(SERVER_FIFO_NAME,O_WRONLY);
printf("the server_fifo_fd = %dn",server_fifo_fd);
if(server_fifo_fd==-1)
err_exit("sorry,no server");

mypid=getpid();
sprintf(client_fifo_name,CLIENT_FIFO_NAME,mypid);
if (mkfifo(client_fifo_name,0777)==-1)
{
err_exit(client_fifo_name);
}

for(times_to_send=0;times_to_send0)
{
printf("%d received:%sn",mypid,my_request.text_data);
}
close(client_fifo_fd);
}

close(server_fifo_fd);
unlink(client_fifo_name);/*注意*/
exit(EXIT_SUCCESS);
}

clserv.h

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include "err_exit.h"

#define SERVER_FIFO_NAME "/tmp/serv_fifo"
#define CLIENT_FIFO_NAME "/tmp/client_%d_fifo"
#define BUFFER_SIZE 80
struct data_to_pass
{
pid_t client_pid;
char text_data[BUFFER_SIZE-1];
};


err_exit.h
#include 
#include 
#define err_exit(MESSAGE)(perror(MESSAGE),exit(1))
#include 
pid_t getpid(void);
pid_t getppid(void);
#include 
pid_t fork(void);


|
char *tmp_char_ptr;
printf("read %sn",*tmp_char_ptr);

这里打印的是什么?
应该是只打印一个字符吧?--printf("read [%s]n", tmp_char_ptr);--不要*号

sprintf(client_fifo_name,CLIENT_FIFO_NAME,my_data.client_pid);
这里编译的时候没有报错么?
建议:
#include 

编译的时候加 -Wall选项

一个makefile例子:
all : server

server : server.o
    gcc -o server server.o (前面是Tab键,不是空格)

server.o: server.c
    gcc -c -g -Wall server.c


    
 
 

您可能感兴趣的文章:

  • Segmentation fault
  • 【怪事】 线程库-lpthread发生Segmentation fault问题
  • linux+SDL segmentation fault
  • 大家帮忙看看这个Segmentation fault是什么情况
  • Segmentation fault是什么错误?
  • 调试出错:segmentation fault
  • segmentation fault问题
  • segmentation fault会出core吗?
  • 关于"Segmentation fault"的调试问题
  • Segmentation fault问题
  • 用popen,不能使用fseek了?Segmentation fault错误
  • main函数返回收到segmentation fault
  • AIX中出现的Segmentation fault(code dump)如何解决?
  • 求救Segmentation fault(核心转储)是什么意思
  • 输入重定向后发生segmentation fault错误?
  • 请教关于在redhat linux 9下的rhide1.5.1和dev-c++运行错误:Segmentation fault
  • 出现segmentation fault 的错误后如何修复系统!!!
  • php5.3+zend guard loader安装时出现Segmentation fault
  • 在solaris8上编译完成,链接的时候出现Segmentation Fault - core dumped这种错误,请问是什么原因??
  • segmentation fault 有没有可能是是因为内存申请失败?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • chmod segmentation
  • linux下信号11 (Segmentation violation (ANSI))是何种错误,急!急!急!急!
  • Linux 下 memcpy()有Segmentation fault
  • segmentation fault(core dump)这句话怎么解释??
  • ssh提示:[: =: unary operator expected;rm、less、vi、su等命令提示:Segmentation fault,可能是什么故障?
  • setjmp SEGMENTATION FAULT 错误。
  • 我的程序出现Segmentation fault是怎么回事??
  • pthread_create 为何报 Segmentation fault?
  • 我用newwin()的时候编译通过了,可是运行的时候报告Segmentation fault
  • 求救:linux 执行sort时报Segmentation fault 错误
  • 打开设备,测试驱动程序,报错:segmentation fault
  • linux中C程序出现Segmentation fault。。。
  • 奇怪的segmentation fault 错误!!!!!!!!!!!!!!
  • unix shell报错: Segmentation Fault
  • 请问下面一个关于vfork的c程序的运行结果为什么会出现Segmentation fault ?哪位高手帮我解释下,谢谢。
  • linux C程序,请问下面一个程序为什么会出现Segmentation fault ??
  • 在linux下编译程序,在程序结束时出现segmentation fault..实在想不通,求教高手!!
  • Segmentation fault 郁闷
  • 程序运行几天后,会出现Segmentation fault, aborting. You have new mail in /var/spool/mail/root.我怎么查错?
  • 大家看看这是怎么回事,segmentation fault


  • 站内导航:


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

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

    浙ICP备11055608号-3