aboutsummaryrefslogtreecommitdiffstats
path: root/extension
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * Bug fix to inplace extension and doc updates.Arnold D. Robbins2015-03-182-19/+10
| | | |
| * | | Merge branch 'master' into selectAndrew J. Schorr2015-02-0125-3866/+1363
| |\ \ \
| * \ \ \ Merge branch 'master' into selectAndrew J. Schorr2015-01-192-11/+13
| |\ \ \ \
| * | | | | Revert "When an extension calls sym_lookup on a deferred variable, it should ↵Andrew J. Schorr2015-01-192-14/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | always succeed." This reverts commit f8fecb69346cbcd774a73a49322aeb8ddea73e44.
| * | | | | When an extension calls sym_lookup on a deferred variable, it should always ↵Andrew J. Schorr2015-01-082-10/+14
| | | | | | | | | | | | | | | | | | | | | | | | succeed.
| * | | | | Fix bug in API deferred variable creation and add a test case.Andrew J. Schorr2015-01-062-1/+77
| | | | | |
| * | | | | Add low-level access to the get_file API through the testext sample ↵Andrew J. Schorr2015-01-052-1/+76
| | | | | | | | | | | | | | | | | | | | | | | | extension to facilitate further testing.
| * | | | | Remove api_get_file typelen argument.Andrew J. Schorr2015-01-022-1/+6
| | | | | |
| * | | | | Remove the select extension, since it will be part of gawkextlib.Andrew J. Schorr2015-01-028-807/+20
| | | | | |
| * | | | | Remove the errno extension, since it is now part of gawkextlib.Andrew J. Schorr2014-12-145-634/+23
| | | | | |
| * | | | | More autotools updates to derived files in the extension subdirectory.Andrew J. Schorr2014-12-143-20/+249
| | | | | |
| * | | | | Merge branch 'master' into selectAndrew J. Schorr2014-12-1412-197/+792
| |\ \ \ \ \
| * | | | | | Add new functions input_fd and output_fd to the select extension.Andrew J. Schorr2014-11-093-6/+79
| | | | | | |
| * | | | | | Enhance get_file API to return info about input and output and to enable ↵Andrew J. Schorr2014-11-064-11/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | extensions to create already-opened files or sockets.
| * | | | | | If getline fails due to a retryable I/O error, return -2 without closing the ↵Andrew J. Schorr2014-11-052-2/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | file only if PROCINFO[<name>, "RETRY"] is configured.
| * | | | | | Merge remote-tracking branch 'origin/master' into selectAndrew J. Schorr2014-11-034-5/+20
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge 'master' into selectAndrew J. Schorr2014-09-214-2/+106
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge branch 'master' into selectAndrew J. Schorr2014-04-1330-4587/+6427
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'master' into selectArnold D. Robbins2013-08-143-12/+51
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | Patch the select extension's set_non_blocking function to check that fcntl ↵Andrew J. Schorr2013-07-075-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and O_NONBLOCK are available.
| * | | | | | | | | | In select extension, if lacking sigaction, reset signal handler each time a ↵Andrew J. Schorr2013-07-072-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | signal is trapped.
| * | | | | | | | | | Enhance select signal function to return info about previous handler and ↵Andrew J. Schorr2013-07-052-15/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | decide whether to override when it is unknown.
| * | | | | | | | | | Patch the select extension set_non_blocking function to work with a single ↵Andrew J. Schorr2013-07-052-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "" argument.
| * | | | | | | | | | For select extension signal trapping, fall back to signal if sigaction is ↵Andrew J. Schorr2013-07-052-11/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unavailable.
| * | | | | | | | | | Add a kill function to the select extension, and check whether sigprocmask ↵Andrew J. Schorr2013-07-055-7/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is available.
| * | | | | | | | | | Patch select to remove support for buggy case where the index had a numeric ↵Andrew J. Schorr2013-07-022-32/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | value.
| * | | | | | | | | | Tighten up some argument checks in the select extension.Andrew J. Schorr2013-07-022-6/+15
| | | | | | | | | | |
| * | | | | | | | | | Add new extension header files to EXTRA_DIST so they will be in the tarball.Andrew J. Schorr2013-07-023-2/+10
| | | | | | | | | | |
| * | | | | | | | | | Enhance getline to return -2 when an I/O operation should be retried.Andrew J. Schorr2013-07-022-9/+25
| | | | | | | | | | |
| * | | | | | | | | | Add set_non_blocking function to the select extension.Andrew J. Schorr2013-07-012-1/+38
| | | | | | | | | | |
| * | | | | | | | | | Add PROCINFO["errno"] and errno extension to map between errno and strings.Andrew J. Schorr2013-07-017-28/+659
| | | | | | | | | | |
| * | | | | | | | | | Add signal trapping support to the select extension.Andrew J. Schorr2013-07-013-10/+285
| | | | | | | | | | |
| * | | | | | | | | | Added first version of select extension and new API hooks needed by it.Andrew J. Schorr2013-06-307-6/+228
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into wasted-byteArnold D. Robbins2015-03-173-4/+13
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / | |/| | | | | | | | |
| * | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-03-173-4/+13
| |\ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|/ | | |/| | | | | | | |
| | * | | | | | | | | Document a limitation in the inplace extension.Arnold D. Robbins2015-03-172-2/+6
| | | | | | | | | | |
| | * | | | | | | | | Fix a compiler warning.Arnold D. Robbins2015-03-172-2/+7
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into wasted-byteArnold D. Robbins2015-03-083-2/+8
|\| | | | | | | | | |
| * | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-02-263-2/+8
| |\| | | | | | | | |
| | * | | | | | | | | Fixes for building a tarball.Arnold D. Robbins2015-02-263-2/+8
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into wasted-byteArnold D. Robbins2015-02-132-1/+5
|\| | | | | | | | | |
| * | | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-02-112-1/+5
| |\| | | | | | | | | | | |_|_|_|_|_|_|_|/ | |/| | | | | | | |
| | * | | | | | | | O'Reilly edits, through Chapter 16.Arnold D. Robbins2015-02-112-1/+5
| | | | | | | | | |
* | | | | | | | | | Merge branch 'master' into wasted-byteArnold D. Robbins2015-01-2625-3866/+1363
|\| | | | | | | | |
| * | | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-01-2525-3866/+1363
| |\| | | | | | | | | | |_|_|_|_|_|_|/ | |/| | | | | | |
| | * | | | | | | Move to Libtool 2.4.5.Arnold D. Robbins2015-01-259-161/+1034
| | | | | | | | |
| | * | | | | | | Update to Gettext 0.19.4.Arnold D. Robbins2015-01-2411-3461/+140
| | | | | | | | |
| | * | | | | | | Move to Automake 1.15.Arnold D. Robbins2015-01-2413-247/+192
| | | | | | | | |
* | | | | | | | | Merge branch 'master' into wasted-byteArnold D. Robbins2015-01-072-4/+8
|\| | | | | | | |
| * | | | | | | | Merge branch 'gawk-4.1-stable'Arnold D. Robbins2015-01-072-4/+8
| |\| | | | | | | | | |_|_|_|_|_|/ | |/| | | | | |