diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-03-28 03:29:46 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-03-28 03:29:46 +0000 |
commit | 7f3b9e3bc6d1bf3735d920fc2a1a0928246b3143 (patch) | |
tree | 0aa1425db7a5ebb5ec5e9217909e9e73b676b196 /sys/miscfs | |
parent | 5db347204f2f2d0c33e0cf121e4067464540507a (diff) |
Add support for _PC_TIMESTAMP_RESOLUTION for ffs/mfs, cd9600, ext2,
msdos, NFS, fifos and devices, plus support for querying it in
getconf(2) and the requisite pathconf(2) manpage blurb
ok tedu@
Diffstat (limited to 'sys/miscfs')
-rw-r--r-- | sys/miscfs/fifofs/fifo_vnops.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/miscfs/fifofs/fifo_vnops.c b/sys/miscfs/fifofs/fifo_vnops.c index d52795d8732..c6995b89379 100644 --- a/sys/miscfs/fifofs/fifo_vnops.c +++ b/sys/miscfs/fifofs/fifo_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fifo_vnops.c,v 1.38 2013/03/28 02:08:39 guenther Exp $ */ +/* $OpenBSD: fifo_vnops.c,v 1.39 2013/03/28 03:29:44 guenther Exp $ */ /* $NetBSD: fifo_vnops.c,v 1.18 1996/03/16 23:52:42 christos Exp $ */ /* @@ -417,6 +417,9 @@ fifo_pathconf(void *v) case _PC_CHOWN_RESTRICTED: *ap->a_retval = 1; break; + case _PC_TIMESTAMP_RESOLUTION: + *ap->a_retval = 1; + break; default: error = EINVAL; break; |