summaryrefslogtreecommitdiff
path: root/modules/mkfifoat
blob: 387ce09d6f7295466d3f6ce3a13e477fe18c8705 (plain)
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
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
if test $HAVE_MKFIFOAT = 0 || test $REPLACE_MKFIFOAT = 1; then
  AC_LIBOBJ([mkfifoat])
fi
if test $HAVE_MKNODAT = 0 || test $REPLACE_MKNODAT = 1; then
  AC_LIBOBJ([mknodat])
fi
gl_SYS_STAT_MODULE_INDICATOR([mkfifoat])
gl_SYS_STAT_MODULE_INDICATOR([mknodat])

Makefile.am:

Include:
<fcntl.h>
<sys/stat.h>

License:
GPL

Maintainer:
Jim Meyering, Eric Blake