- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <fcntl.h>
- #include <limits.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include <errno.h>
- #define FIFO_NAME "/home/hello/tmp/my_fifo"
- int main()
- {
- int pipe_fd;
- //printf("EACCESS:%d",EACCESS);
- //printf("EEXIST:%d",EEXIST);
- //printf("ENAMETOOLONG:%d",ENAMETOOLONG);
- //printf("ENOENT:%d",ENOENT);
- //printf("ENOSPC:%d",ENOSPC);
- //printf("ENOTDIR:%d",ENOTDIR);
- //printf("EROFS:%d",EROFS);
-
- //if the pipe file do not exist
- if (access(FIFO_NAME, F_OK) == -1)
- {
- //creat FIFO pipe file
- int ret = mkfifo(FIFO_NAME, 0777);
- if(ret == -1)
- {
- puts("创建管道失败");
- printf("errno:%d\n",errno);
- }
- }
复制代码 编译失败 错误: ‘EACCESS’在此作用域中尚未声明
|
|