1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
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-h
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-h [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
|