summaryrefslogtreecommitdiff
path: root/timedrun.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: timedrun SIGHUP pass-thrudormando2023-02-011-0/+10
| | | | | timedrun would attmept to exit after passing along any type of signal to the child. allow SIGHUP to pass and continue waiting.
* timedrun: proper signal handler initialization.David Carlier2020-02-261-1/+9
| | | | also print basic usage when forgetting arguments.
* restartable cachedormando2019-09-171-0/+1
| | | | | | | | | | | | | | | "-e /path/to/tmpfsmnt/file" SIGUSR1 for graceful stop restart requires the same memory limit, slab sizes, and some other infrequently changed details. Most other options and features can change between restarts. Binary can be upgraded between restarts. Restart does some fixup work on start for every item in cache. Can take over a minute with more than a few hundred million items in cache. Keep in mind when a cache is down it may be missing invalidations, updates, and so on.
* Followed directions of issue 386 regarding posix signalsGleicon Moraes2018-08-081-6/+6
|
* Rename 'stats' to 'status' for readability.Manish Katiyar2018-02-191-5/+5
| | | | Signed-off-by: Manish Katiyar <mkatiyar@gmail.com>
* bug237: Don't compute incorrect argc for timedrunDustin Sallings2012-01-111-4/+2
| | | | | Since spawn_and_wait doesn't use argc anyway, might as well just not send a value in.
* Print a message on stderr when the timeout occursTrond Norbye2009-09-021-0/+3
|
* Put a time limit on memcached processes started from within tests.Dustin Sallings2009-08-141-0/+101
This solves the problem where certain test failures would cause indefinite hangs as child processes refused to ever exit.