Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-01-10 | Trivial changes: whitespace and modes. | Dan Cross | 1 | -2/+2 | |
Remote whitespace at the ends of lines. Remove blank lines from the ends of files. Change modes on source files so that they are not executable. Signed-off-by: Dan Cross <cross@gajendra.net> | |||||
2019-10-29 | plumber: add -f (foreground) option (#288) | Jason Felice | 3 | -4/+11 | |
In MacOS, services run by launchd must run in the foreground, since launchd manages forking and other resources. | |||||
2019-09-19 | plumber: fix EOF detection on writes to rules file (#257) | Fazlul Shahriar | 1 | -3/+3 | |
Instead of checking Fcall.data==nil, check Fcall.count==0. The former check always fails after `gcc -O2` optimizations (gcc version 8.3.0). Also fix an out-of-bound read detected by valgrind: ``` ==31162== Invalid read of size 1 ==31162== at 0x11005E: morerules (rules.c:739) ==31162== by 0x110254: writerules (rules.c:775) ==31162== by 0x10D2FE: fsyswrite (fsys.c:848) ==31162== by 0x10C304: fsysproc (fsys.c:248) ==31162== by 0x112E8C: threadstart (thread.c:96) ==31162== by 0x4A682BF: ??? (in /usr/lib/libc-2.29.so) ==31162== Address 0x4ea984a is 0 bytes after a block of size 250 alloc'd ==31162== at 0x483AD7B: realloc (vg_replace_malloc.c:826) ==31162== by 0x1196F3: p9realloc (malloc.c:53) ==31162== by 0x10BDFD: erealloc (plumber.c:124) ==31162== by 0x10FCD9: concat (rules.c:642) ==31162== by 0x10FCD9: concat (rules.c:635) ==31162== by 0x110230: writerules (rules.c:773) ==31162== by 0x10D2FE: fsyswrite (fsys.c:848) ==31162== by 0x10C304: fsysproc (fsys.c:248) ==31162== by 0x112E8C: threadstart (thread.c:96) ==31162== by 0x4A682BF: ??? (in /usr/lib/libc-2.29.so) ``` Fixes #256 | |||||
2012-05-15 | plumb: remove debugging print | Russ Cox | 1 | -1/+0 | |
R=rsc http://codereview.appspot.com/6210059 | |||||
2010-10-07 | plumber: comment out bogus user name check | Russ Cox | 1 | -0/+2 | |
R=rsc http://codereview.appspot.com/2295043 | |||||
2008-04-17 | post9pservice: add extra arg to unmodified calls | Russ Cox | 1 | -1/+1 | |
2006-04-01 | Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. | rsc | 2 | -3/+3 | |
2005-09-09 | NetBSD-macppc ctype needs uchars. | rsc | 1 | -3/+3 | |
2005-03-18 | add -9 for debugging | rsc | 1 | -0/+4 | |
2005-01-13 | Many small edits. | rsc | 1 | -3/+1 | |
2005-01-11 | add $plan9 variable | rsc | 1 | -0/+5 | |
2005-01-04 | do threading right | rsc | 2 | -26/+4 | |
2005-01-04 | exit correctly | rsc | 1 | -7/+7 | |
2005-01-04 | Goodbye SHORTLIB | rsc | 1 | -1/+0 | |
2004-12-28 | be like plan 9 plumber | rsc | 1 | -3/+22 | |
2004-12-28 | avoid use of an extra proc | rsc | 1 | -1/+1 | |
2004-12-28 | FreeBSD tweaks | rsc | 1 | -1/+2 | |
2004-12-28 | use threaddaemonize | rsc | 1 | -12/+1 | |
2004-12-26 | update to use new thread library | rsc | 1 | -4/+9 | |
2004-07-09 | Compare function pointers against 0 rather than nil. | wkj | 1 | -1/+1 | |
2004-04-19 | clean up when finished. | rsc | 1 | -1/+0 | |
don't set PLAN9 don't set PLAN9 | |||||
2004-03-26 | SunOS can rot in hell. | rsc | 1 | -16/+20 | |
2004-03-25 | Today's changes. | rsc | 3 | -4/+6 | |
More changes. | |||||
2004-03-21 | Small tweaks | rsc | 1 | -0/+2 | |
Lots of new code imported. | |||||
2004-03-05 | Amazingly picky bug fixes from Valgrind. | rsc | 2 | -1/+7 | |
2004-03-05 | Various little fixes. | rsc | 1 | -1/+1 | |
2004-03-05 | Pipes cannot use SOCK_DGRAM. Back to SOCK_STREAM. | rsc | 1 | -1/+1 | |
Add debugging to fdwait. Rewrite getcallerpc on PowerMac to be correct. | |||||
2004-02-29 | Various tweaks. | rsc | 1 | -1/+1 | |
2004-02-29 | Small tweaks to make things build again. | rsc | 5 | -26/+21 | |
2003-12-11 | Add support for user-level 9P servers/clients and various bug fixes to go ↵ | rsc | 6 | -74/+60 | |
with them. | |||||
2003-11-23 | make -> mk | rsc | 1 | -16/+0 | |
2003-11-23 | Plan 9 version, nothing tweaked yet. | rsc | 7 | -0/+2596 | |
2003-10-14 | Single-threaded plumber that can run "start" rules. | rsc | 1 | -0/+16 | |
Thanks to Caerwyn Jones. |