原创 管道 编程 :virtualbox的共享目录中不可运行

2010-6-21 22:22 3436 11 12 分类: 软件与OS

管道通信编程,这里写下日志主要是因为在virtualbox的共享目录下是不可运行的,其提示错误如下:


Failed to Create fifo <read-fifo.pipe> : Operation not permitted


一定要将运行文件拷贝到linux别的目录下执行,切记。


主要用到了一个:mkfifo函数来创建管道。


#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>


int main(void)
{
 char write_fifo_name[] = "read-fifo.pipe";
 int  write_fd;
 int  len;
 char ch;
 struct stat stat_buf;

 int ret = mkfifo(write_fifo_name, S_IRUSR | S_IWUSR);
 if (ret == (-1))
 {
  printf("Failed to Create fifo <%s> : %s\n", write_fifo_name, strerror(errno));
  exit(-1);
 }
 
 write_fd = open(write_fifo_name, O_WRONLY);
 
 if ((-1)== write_fd)
 {
  printf("Failed to Open fifo <%s> : %s\n", write_fifo_name, strerror(errno));
  exit(-1);
 }
 
 
 printf("==Start While(1)--Peter\n");
 while(1)
 {
  ch = getchar();
  
  write(write_fd, &ch, 1);
  
  usleep(1);
 } 
 
 close(write_fd);
 unlink(write_fifo_name);
 
 return 0; 
}

文章评论1条评论)

登录后参与讨论

用户377235 2013-3-24 13:52

谢谢提供信息

相关推荐阅读
walnutcy_696810119 2012-11-21 08:37
Linux下使用smartCOM调试串口
在Windows下的串口调试一直使用sscom,在Linux下只找到一个cutecom,用了几次,很不喜欢,就着手开发了一款自己的串口调试工具,smartCOM。 smartCOM介绍:http...
walnutcy_696810119 2012-03-29 18:12
【博客大赛】原创--测量基础:什么是测量
写在正文之前: 适逢EDNChina搞活动,而我本人也算在测量业工作,就一起作下笔记吧。若有错误,请大家一起斧正。笔者写本文一方面是梳理知识,另一方面也希望与大家探讨有关测量的知识、应用等,希...
walnutcy_696810119 2011-12-20 18:29
GLONASS 15年来,首次实现24颗星在轨可用
  EDN的博客改版后,不太好用,在SINA重开一个,不过重点改为关注GNSS行业新闻 http://blog.sina.com.cn/s/blog_7420cd1701012en9....
walnutcy_696810119 2011-12-20 17:49
逆向工程第一步:通信协议分析
工程中常有这样的事,想分析下其他知名公司产品中的通信协议,以便生产设计兼容产品。 1) 逆向工程,首先要了解产品,知己知彼,百战不怠;     去年受命想仿一款GARMIN的导航盒,但无法...
walnutcy_696810119 2011-11-14 11:30
通用代码调试方法 (Keil, VCC)
调试代码一般需要定位问题,这里给出一个解决方案, 一般的编译器均支持这些宏指令。   #define DEBUG_WALT_1113     1 extern void log_t...
我要评论
1
11
关闭 站长推荐上一条 /2 下一条