| Commit message (Expand) | Author | Age | Files | Lines |
* | util.encodings: Use the 'idx' argument correctly [-Wunused-parameter] | Kim Alvefur | 2017-10-05 | 1 | -1/+1 |
* | util.crand: Build with musl/non-glibc (can't have undefined argument-taking m... | Kim Alvefur | 2017-04-25 | 1 | -0/+4 |
* | util.pposix: Remove fallocate | Kim Alvefur | 2017-02-28 | 1 | -60/+1 |
* | util.pposix: Add function for atomically appending data to a file | Kim Alvefur | 2017-03-01 | 1 | -1/+64 |
* | util.encodings: Make limit lookup table a const (from Lua f2a813ae) | Kim Alvefur | 2017-03-22 | 1 | -1/+1 |
* | util.signal: Enable all GNU features, _DEFAULT_SOURCE doesn't have the desire... | Kim Alvefur | 2017-03-12 | 1 | -1/+1 |
* | util.signal: Restore non-standard GNU "default" behaviour of signal(2) | Kim Alvefur | 2017-03-11 | 1 | -1/+1 |
* | util-src: Specify size of various tables to be allocated | Kim Alvefur | 2017-03-09 | 5 | -7/+7 |
* | util.pposix: Use correct type for limits [-Wconstant-conversion] | Kim Alvefur | 2017-03-07 | 1 | -1/+1 |
* | util.pposix: Limit meminfo to Linux until we can figure out how to get this i... | Kim Alvefur | 2017-03-07 | 1 | -1/+1 |
* | util.ringbuffer: Change types of length related variables to size_t [-Wsign-c... | Kim Alvefur | 2017-03-02 | 1 | -2/+2 |
* | Backed out changeset a3a4ed0d34f4 C99 is ok | Kim Alvefur | 2017-03-02 | 1 | -2/+1 |
* | util.crand: Only include getrandom shiv with glibc older than 2.25 | Kim Alvefur | 2017-03-02 | 1 | -1/+6 |
* | util.crand: Change argumen names to match some man page | Kim Alvefur | 2017-03-02 | 1 | -2/+2 |
* | util.crand: Move comment block | Kim Alvefur | 2017-03-01 | 1 | -4/+4 |
* | util.pposix, configure: Move _GNU_SOURCE macro into source files | Kim Alvefur | 2017-03-01 | 4 | -12/+17 |
* | util.pposix: Expose ENOENT constant (usually 2, but you never know) | Kim Alvefur | 2017-03-01 | 1 | -0/+5 |
* | util.pposix: Fix typo in comment | Kim Alvefur | 2017-02-26 | 1 | -1/+1 |
* | util.crand: Clarify that lua_error does not return | Kim Alvefur | 2017-02-25 | 1 | -1/+1 |
* | util.crand: Throw error if OpenSSLs RNG is not seeded | Kim Alvefur | 2017-02-25 | 1 | -4/+6 |
* | util-src/*.c: Attach pointer * to name instead of type | Kim Alvefur | 2017-02-12 | 8 | -138/+162 |
* | util.ringbuffer: Remove address of buffer itself from __tostring since is now... | Kim Alvefur | 2017-02-12 | 1 | -1/+1 |
* | util-src/*.c: Squeeze repeated blank lines | Kim Alvefur | 2017-01-23 | 5 | -8/+0 |
* | util.crand: TODOs | Kim Alvefur | 2017-01-22 | 1 | -1/+2 |
* | util.crand: Comment about getrandom | Kim Alvefur | 2017-01-22 | 1 | -1/+4 |
* | util.crand: Add comment describing purpose of module | Kim Alvefur | 2017-01-22 | 1 | -0/+6 |
* | util.crand: Update copyright header | Kim Alvefur | 2017-01-22 | 1 | -3/+3 |
* | util.ringbuffer: Allocate buffer itself as part of userdata (simpler, single ... | Kim Alvefur | 2017-01-22 | 1 | -19/+3 |
* | util.ringbuffer: Remove unused macros | Kim Alvefur | 2017-01-22 | 1 | -3/+0 |
* | util.crand: Raise hard errors | Kim Alvefur | 2017-01-20 | 1 | -7/+3 |
* | util.crand: Remove seeding | Kim Alvefur | 2017-01-20 | 1 | -20/+0 |
* | util.crand: Let Lua handle allocation, freeing and error handling for buffer | Kim Alvefur | 2017-01-20 | 1 | -40/+3 |
* | util.crand: Switch to luaL_checkinteger since checkint is deprecated in Lua 5.3 | Kim Alvefur | 2017-01-20 | 1 | -1/+2 |
* | util-src: Make C modules assert that the Lua runtime matches what it was comp... | Kim Alvefur | 2017-01-08 | 9 | -0/+27 |
* | util.pposix: rfork() seems to be FreeBSD only (fixes #412) | Kim Alvefur | 2016-12-19 | 1 | -2/+2 |
* | configure: Move -ggdb flag here from util-src/Make | Kim Alvefur | 2016-08-19 | 1 | -1/+1 |
* | Move C compiler flag -pedantic from Makefile to configure | Kim Alvefur | 2016-08-19 | 1 | -1/+1 |
* | util-src/Makefile: Remove redundant -Wall (already set by configure) | Kim Alvefur | 2016-08-19 | 1 | -1/+1 |
* | util.table: Move loop variable to top of function for C89 compatibility | Kim Alvefur | 2016-08-07 | 1 | -1/+2 |
* | util.table: Add pack() function (this is already available in Lua 5.2+) | Matthew Wild | 2016-07-27 | 1 | -0/+15 |
* | util.pposix: Ask for shared file descriptor table using rfork() on *BSD (fixe... | Kim Alvefur | 2016-05-25 | 1 | -0/+13 |
* | util.crand: Silence compiler warning | Kim Alvefur | 2016-05-25 | 1 | -1/+1 |
* | util.crand: Include stdlib.h instead of malloc.h for portability (thanks Tobias) | Kim Alvefur | 2016-02-22 | 1 | -1/+1 |
* | util.crand: C binding to one of OpenSSL, Linux getrandom() or OpenBSD arc4ran... | Kim Alvefur | 2016-02-22 | 2 | -1/+164 |
* | Add util.ringbuffer, a ringbuffer with a file handle like interface | Kim Alvefur | 2016-02-02 | 2 | -2/+234 |
* | util.pposix: Expose the uname GNU extension field 'domainname' | Kim Alvefur | 2015-11-25 | 1 | -0/+4 |
* | configure,util-src/Makefile: Make a variable that includes -l for OpenSSL (li... | Kim Alvefur | 2015-09-27 | 1 | -1/+1 |
* | util-src/Makefile: Remove redundant variables (set in config.unix already) | Kim Alvefur | 2015-09-27 | 1 | -8/+0 |
* | util-src/Makefile: Don't make exceptions for how to build .so for util.hashes... | Kim Alvefur | 2015-09-27 | 1 | -4/+2 |
* | util-src/Makefile: Tell Make how to build .so from .o in a modern way (Let bu... | Kim Alvefur | 2015-09-27 | 1 | -6/+2 |