diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-11-10 07:53:25 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-11-10 07:53:25 -0800 |
commit | 3fcc1b8b1b826d689ace5e3b98be10a46bf4ae56 (patch) | |
tree | d377fa1d4a37662af4d7bcadddc15dc3ec4aa74e /txr.1 | |
parent | f9298daa51f5800f31ee7cdca5797ee57ae2e163 (diff) | |
download | txr-3fcc1b8b1b826d689ace5e3b98be10a46bf4ae56.tar.gz txr-3fcc1b8b1b826d689ace5e3b98be10a46bf4ae56.tar.bz2 txr-3fcc1b8b1b826d689ace5e3b98be10a46bf4ae56.zip |
ftw: default flags to ftw-phys
More often than not, you want the FTW_PHYS flag when
calling the nftw function. Let's make that the default
in TXR's wrapper.
* ftw.c (ftw_wrap): Default to FTW_PHYS when flags
argument not given, rather than zero, subject to
compatibility option.
(ftw_init): Don't check for FTW_PHYS with ifdef, since
we relied on it being present. And anyway, any nftw
implementation must have that.
* txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -74306,9 +74306,22 @@ and arguments are reversed with respect to the C language interface. They are both optional; .meta flags -defaults to zero, and +defaults to the value of +.code ftw-phys +and .meta nopenfd defaults to 20. +If an argument is given to +.metn flags , +then the presence of the +.code ftw-phys +is no longer implied; the flag must be explicitly +included in the argument in order to be present. + +Compatibility Note: the +.meta flags +parameter defaults to an argument value of zero in \*(TX +versions 283 or lower. The .meta path-or-list @@ -89972,6 +89985,13 @@ of these version values, the described behaviors are provided if is given an argument which is equal or lower. For instance .code "-C 103" selects the behaviors described below for version 105, but not those for 102. +.IP 283 +In \*(TX 283 and older versions, the +.meta flags +parameter of the +.code ftw +function defaults to zero, rather than +.codn ftw-phys . .IP 275 In \*(TX 275 and older versions, the FFI type operator .code align |