52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
Description:
|
|
mkfifoat() function and mknodat() function: create named FIFOs relative to a
|
|
directory
|
|
|
|
Files:
|
|
lib/mkfifoat.c
|
|
lib/mknodat.c
|
|
lib/at-func.c
|
|
m4/mkfifoat.m4
|
|
|
|
Depends-on:
|
|
sys_stat
|
|
extensions
|
|
fcntl-h [test $HAVE_MKFIFOAT = 0 || test $REPLACE_MKFIFOAT = 1 || test $HAVE_MKNODAT = 0 || test $REPLACE_MKNODAT = 1]
|
|
fstatat [test $REPLACE_MKFIFOAT = 1 || test $REPLACE_MKNODAT = 1]
|
|
at-internal [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
errno [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
fchdir [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
filename [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
openat-die [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
openat-h [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
save-cwd [test $HAVE_MKFIFOAT = 0 || test $HAVE_MKNODAT = 0]
|
|
mkfifo [test $HAVE_MKFIFOAT = 0]
|
|
mknod [test $HAVE_MKNODAT = 0]
|
|
|
|
configure.ac:
|
|
gl_FUNC_MKFIFOAT
|
|
gl_CONDITIONAL([GL_COND_OBJ_MKFIFOAT],
|
|
[test $HAVE_MKFIFOAT = 0 || test $REPLACE_MKFIFOAT = 1])
|
|
gl_CONDITIONAL([GL_COND_OBJ_MKNODAT],
|
|
[test $HAVE_MKNODAT = 0 || test $REPLACE_MKNODAT = 1])
|
|
gl_SYS_STAT_MODULE_INDICATOR([mkfifoat])
|
|
gl_SYS_STAT_MODULE_INDICATOR([mknodat])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_MKFIFOAT
|
|
lib_SOURCES += mkfifoat.c
|
|
endif
|
|
if GL_COND_OBJ_MKNODAT
|
|
lib_SOURCES += mknodat.c
|
|
endif
|
|
|
|
Include:
|
|
<fcntl.h>
|
|
<sys/stat.h>
|
|
|
|
License:
|
|
GPL
|
|
|
|
Maintainer:
|
|
Jim Meyering, Eric Blake
|