summaryrefslogtreecommitdiffstats
path: root/usr.bin/getconf/getconf.h
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>2002-09-19 03:39:03 +0000
committerwollman <wollman@FreeBSD.org>2002-09-19 03:39:03 +0000
commitcb45d14fee8f6330b3fbc791aea9eaa571b019f9 (patch)
treeab1f0dc71db78e794da3665ed9b795e82d90c7aa /usr.bin/getconf/getconf.h
parenta059a58a99b6e22aecf174427806403adc8d6cf6 (diff)
downloadFreeBSD-src-cb45d14fee8f6330b3fbc791aea9eaa571b019f9.zip
FreeBSD-src-cb45d14fee8f6330b3fbc791aea9eaa571b019f9.tar.gz
Completely revamp the way getconf(1) works, for better adherence to the
intent of the Standard. - Make getconf able to distinguish between configuration variables which are entirely unknown and those which are merely not defined in the compilation environment. The latter now get a more appropriate "undefined\n" result rather than a diagnostic. This may not be exactly right, but it's closer to the intent of the Standard than the previous behavior. - Support ``programming environments'' by validating that the environment requested with the `-v' flag is the one-and-only execution environment. (If more environments are supported for some platforms in the future, multiple getconf(1) executables will be required, but a simple edit in progenv.gperf will enable automatic support for it.) Document POSIX standard programming environments. - Add all of the 1003.1-2001 configuration variables. FreeBSD does not support all of these (including some that are mandatory); getconf will later be fixed to break the world should a required variable not be defined. As a result of all these changes, gperf is no longer adequate. Keep the overall format and names of the files for now, to preserve revision history. Use an awk script to process the .gperf files into C source, which does a few things that gperf, as a more general tool, cannot do. The keyword recognition function is no longer a perfect hash function. This may obviate the need for gperf in the source tree. - Add a small compile-time regression test to break the build if any of the .gperf files declare conflicting token sets. (gperf itself would have done this for the simple case of duplicate tokens in the same input file.)
Diffstat (limited to 'usr.bin/getconf/getconf.h')
-rw-r--r--usr.bin/getconf/getconf.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/getconf/getconf.h b/usr.bin/getconf/getconf.h
index 0cb13c4..60d10d2 100644
--- a/usr.bin/getconf/getconf.h
+++ b/usr.bin/getconf/getconf.h
@@ -29,7 +29,10 @@
* $FreeBSD$
*/
-int find_confstr(const char *name);
-int find_sysconf(const char *name);
-int find_pathconf(const char *name);
+#include <stdint.h>
+int find_confstr(const char *name, int *key);
+int find_limit(const char *name, intmax_t *value);
+int find_pathconf(const char *name, int *key);
+int find_progenv(const char *name, const char **alt_path);
+int find_sysconf(const char *name, int *key);
OpenPOWER on IntegriCloud