mkfifo - make a FIFO special file
#include <sys/types.h> #include <sys/stat.h> int mkfifo(const char *path, mode_t mode);
The mkfifo() function creates a new FIFO special file named by the pathname pointed to by path. The file permission bits of the new FIFO are initialized from mode. The file permission bits of the mode argument are modified by the process's file creation mask (see umask(2)). Bits other than the file permission bits in mode are ignored.
If path names a symbolic link, mkfifo() fails and sets errno to EEXIST.
The FIFO's user ID is set to the process's effective user ID. The FIFO's group ID is set to the group ID of the parent directory or to the effective group ID of the process.
The mkfifo() function calls mknod(2) to create the file.
Upon successful completion, mkfifo() marks for update the st_atime, st_ctime, and st_mtime fields of the file. Also, the st_ctime and st_mtime fields of the directory that contains the new entry are marked for update.
Upon successful completion, 0 is returned. Otherwise, -1 is returned and errno is set to indicate the error.
The mkfifo() function will fail if:
EACCES
EEXIST
ELOOP
ENAMETOOLONG
ENOENT
ENOSPC
ENOTDIR
EROFS
The mkfifo() function may fail if:
ELOOP
ENAMETOOLONG
Example 1 Create a FIFO File
The following example demonstrates how to create a FIFO file named /home/cnd/mod_done with read and write permissions for the owner and read permissions for the group and others.
#include sys/types.h> #include sys/stat.h> int status; ... status = mkfifo("/home/cnd/mod_done", S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
See attributes(5) for descriptions of the following attributes:
|
mkdir(1), chmod(2), exec(2), mknod(2), umask(2), stat.h(3HEAD), ufs(7FS), attributes(5), standards(5)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |