Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-11-18 | Typo. Closes: #649158 | Joey Hess | 2 | -1/+7 | |
2011-06-19 | releasing version 0.450.45 | Joey Hess | 2 | -3/+3 | |
2011-04-01 | ts: Support %.s for seconds sinch epoch with subsecond resolution. Closes: ↵ | Joey Hess | 2 | -5/+13 | |
#619764 | |||||
2011-03-10 | releasing version 0.440.44 | Joey Hess | 1 | -2/+2 | |
2011-02-19 | pee: Propigate exit status of commands run. | Joey Hess | 2 | -6/+19 | |
2011-02-19 | dep5 update | Joey Hess | 1 | -8/+22 | |
2011-01-24 | typo: sed s/agganges/arranges/ | Barak A. Pearlmutter | 1 | -1/+1 | |
2011-01-13 | DEP-5 | Joey Hess | 1 | -11/+19 | |
2010-10-30 | releasing version 0.430.43 | Joey Hess | 2 | -3/+3 | |
2010-10-29 | chronic: New command, runs a command quietly, unless it fails. | Joey Hess | 5 | -29/+88 | |
2010-10-06 | releasing version 0.420.42 | Joey Hess | 1 | -3/+3 | |
2010-09-13 | update | Joey Hess | 1 | -1/+3 | |
2010-09-13 | minor | Joey Hess | 1 | -7/+7 | |
2010-09-13 | put back optimisation when outputting to stdout | Joey Hess | 1 | -9/+21 | |
Recent changes made it always write to the tmp file, even if it was just going to send a small quantity of data to stdout. Bring back optimisation to avoid temp file in that case. | |||||
2010-09-13 | sponge: Ensure that output file permissions are always preserved if it ↵ | Joey Hess | 3 | -30/+38 | |
already exists. | |||||
2010-09-13 | indentation change | Joey Hess | 1 | -42/+42 | |
2010-09-13 | sponge: Guarantee that output file is always updated atomically, by renaming ↵ | Joey Hess | 3 | -23/+9 | |
a temp file into place. Closes: #592144 | |||||
2010-09-08 | Typo. Closes: #596032 | Joey Hess | 2 | -1/+7 | |
2010-09-02 | releasing version 0.410.41 | Joey Hess | 2 | -3/+3 | |
2010-09-02 | sponge: Correct bad use of fread that caused a trailing quantity of soaked ↵ | Joey Hess | 2 | -4/+8 | |
data to be silently discarded when a temp file was used and sponge output to stdout. Closes: #595220 This bug was sorta introduced by 6f31909ff74c064ea0b5126219b3e8f7b8826bee. Actually, the buggy fread was there before also, and would have happened on quantities of data not evenly divisible by 8. | |||||
2010-07-12 | fix url | Joey Hess | 1 | -1/+1 | |
2010-07-12 | Add missing AUTHOR section to docbook man pages. | Joey Hess | 8 | -2/+57 | |
2010-07-08 | ifdata.docbook: Mark interface as required in synopsis. Closes: #588397 | Joey Hess | 2 | -1/+7 | |
2010-07-07 | clarify | Joey Hess | 1 | -2/+4 | |
based on suggestion from Dieter Plaetinck | |||||
2010-07-06 | releasing version 0.400.40 | Joey Hess | 2 | -3/+3 | |
2010-07-06 | update | Joey Hess | 1 | -5/+5 | |
2010-07-06 | parallel: -i will now replace {} inside parameters, before the {} had to be ↵ | Joey Hess | 2 | -4/+11 | |
a separate parameter. | |||||
2010-07-06 | optimisations and fix memory leak | Joey Hess | 1 | -22/+22 | |
Fork a child before calculating its parameters. This avoids a minor memory leak; the parameter array was allocated in the parent and never freed. | |||||
2010-06-18 | lckdo: Now deprecated, since util-linux's flock(1) can do the same thing. | Joey Hess | 3 | -1/+13 | |
2010-05-24 | use dpkg-mergechangelog | Joey Hess | 1 | -0/+1 | |
2010-04-28 | add note about 578517 | Joey Hess | 1 | -1/+2 | |
2010-02-23 | zrun: Add support for .xz files.0.39 | Joey Hess | 2 | -5/+7 | |
2010-02-23 | fix load edge case | Joey Hess | 2 | -3/+3 | |
If load == maxload, it would not start a job, but also not sleep. That could, in theory, make parallel spin for a bit. Also, clarify docs. | |||||
2010-02-23 | allow -l 0 | Joey Hess | 1 | -1/+1 | |
Now that -l is a decimal value, it makes sense for -l 0.001 and -l 0 to do effectively the same thing. | |||||
2010-02-23 | parallel: Allow a decimal load value to be specified with -l | Joey Hess | 2 | -2/+3 | |
2010-02-23 | parallel: Fix logic error in code handling -l that could make parallel ↵ | Joey Hess | 2 | -3/+5 | |
return a bogus 255 exit code when all jobs succeeded. Closes: #569617 | |||||
2010-02-23 | parallel: Fix to really avoid running new jobs when load is too high. | Joey Hess | 2 | -2/+4 | |
The conditions were ORed before, which typically made the load limit be ignored since the jobs limit was satisfied. Also, -l 0 makes little sense, so don't really wait for the load to become lower than 0 in that case. | |||||
2010-02-23 | parallel: Make -j 0 do something reasonable (start all jobs at once). | Joey Hess | 2 | -2/+3 | |
2010-02-23 | parallel: Fix exit code handling when commands are specified after -- | Joey Hess | 2 | -3/+12 | |
2010-02-21 | Cap sillyness. Closes: #570815 | Joey Hess | 2 | -3/+9 | |
2010-02-09 | releasing version 0.380.38 | Joey Hess | 2 | -4/+3 | |
2010-02-09 | changelog | Joey Hess | 1 | -0/+2 | |
2010-02-09 | parallel: Define WEXITED to allow building on FreeBSD kernel. (This is ↵ | Joey Hess | 2 | -0/+6 | |
somewhat experimental.) | |||||
2010-02-09 | freebsd patch from Enrico Tassi | Joey Hess | 3 | -18/+48 | |
* ifdata: - Use unsigned long for ioctl command. On both Linux and FreeBSD ioctl expects an unsigned long command. FreeBSD kernel was complaining about the (by chance) signedness of the ioctl command (then probably ignored, since it worked both on Linux and FreeBSD). WARNING pid 799 (ifdata): ioctl sign-extension ioctl ffffffffc0206933 - put #if defined(__linux__) around ioctls that are not supported by FreeBSD - Mention in the manpage that some options are Linux specific. | |||||
2009-10-31 | wording | Joey Hess | 1 | -2/+2 | |
2009-10-31 | parallel: Allow running independent commands, like `parallel -j3 -- ls df ↵ | Joey Hess | 3 | -17/+50 | |
"echo hi"` | |||||
2009-10-05 | Description improvements. Closes: #549450 (Thanks, Justin B Rye) | Joey Hess | 3 | -10/+17 | |
2009-07-25 | releasing version 0.370.37 | Joey Hess | 2 | -3/+3 | |
2009-07-25 | parallel.1: Typo fixes. Closes: #538147 | Joey Hess | 2 | -1/+2 | |
2009-07-25 | update | Joey Hess | 2 | -3/+6 | |