Other Environment Variables (The GNU Awk User’s Guide)
From Get docs
Gawk/docs/latest/Other-Environment-Variables
Previous: AWKLIBPATH Variable, Up: Environment Variables [Contents][Index]
2.5.3 Other Environment Variables
A number of other environment variables affect gawk’s behavior, but they are more specialized. Those in the following list are meant to be used by regular users:
GAWK_MSEC_SLEEP- Specifies the interval between connection retries, in milliseconds. On systems that do not support the
usleep()system call, the value is rounded up to an integral number of seconds. GAWK_READ_TIMEOUT- Specifies the time, in milliseconds, for
gawkto wait for input before returning with an error. See section Reading Input with a Timeout. GAWK_SOCK_RETRIES- Controls the number of times
gawkattempts to retry a two-way TCP/IP (socket) connection before giving up. See section Using gawk for Network Programming. Note that when nonfatal I/O is enabled (see section Enabling Nonfatal Output),gawkonly tries to open a TCP/IP socket once. POSIXLY_CORRECT- Causes
gawkto switch to POSIX-compatibility mode, disabling all traditional and GNU extensions. See section Command-Line Options.
The environment variables in the following list are meant for use by the gawk developers for testing and tuning. They are subject to change. The variables are:
AWKBUFSIZE- This variable only affects
gawkon POSIX-compliant systems. With a value of ‘exact’,gawkuses the size of each input file as the size of the memory buffer to allocate for I/O. Otherwise, the value should be a number, andgawkuses that number as the size of the buffer to allocate. (When this variable is not set,gawkuses the smaller of the file’s size and the “default” blocksize, which is usually the filesystem’s I/O blocksize.) AWK_HASH- If this variable exists with a value of ‘
gst’,gawkswitches to using the hash function from GNU Smalltalk for managing arrays. This function may be marginally faster than the standard function. AWKREADFUNC- If this variable exists,
gawkswitches to reading source files one line at a time, instead of reading in blocks. This exists for debugging problems on filesystems on non-POSIX operating systems where I/O is performed in records, not in blocks. GAWK_MSG_SRC- If this variable exists,
gawkincludes the file name and line number within thegawksource code from which warning and/or fatal messages are generated. Its purpose is to help isolate the source of a message, as there are multiple places that produce the same warning or error message. GAWK_LOCALE_DIR- Specifies the location of compiled message object files for
gawkitself. This is passed to thebindtextdomain()function whengawkstarts up. GAWK_NO_DFA- If this variable exists,
gawkdoes not use the DFA regexp matcher for “does it match” kinds of tests. This can causegawkto be slower. Its purpose is to help isolate differences between the two regexp matchers thatgawkuses internally. (There aren’t supposed to be differences, but occasionally theory and practice don’t coordinate with each other.) GAWK_STACKSIZE- This specifies the amount by which
gawkshould grow its internal evaluation stack, when needed. INT_CHAIN_MAX- This specifies intended maximum number of items
gawkwill maintain on a hash chain for managing arrays indexed by integers. STR_CHAIN_MAX- This specifies intended maximum number of items
gawkwill maintain on a hash chain for managing arrays indexed by strings. TIDYMEM- If this variable exists,
gawkuses themtrace()library calls from the GNU C library to help track down possible memory leaks.
Previous: AWKLIBPATH Variable, Up: Environment Variables [Contents][Index]