Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-05-18 | lib9: avoid unportable use of d_namlen in dirread | Russ Cox | 1 | -2/+1 | |
Fixes #395. | |||||
2020-05-17 | lib9: use opendir/readdir to read directories | Russ Cox | 1 | -183/+187 | |
getdirentries(2) has been deprecated on macOS since 10.5 (ten releases ago). Using it requires disabling 64-bit inodes, but that in turn makes binaries incompatible with some dynamic libraries, most notably ASAN. At some point getdirentries(2) will actually be removed. For both these reasons, switch to opendir/readdir. A little clunky since we have to keep the DIR* hidden away to preserve the int fd interfaces, but it lets us remove a bunch of OS-specific code too. | |||||
2020-05-17 | lib9: move seek into open.c | Russ Cox | 1 | -1/+6 | |
More preparation for opendir. | |||||
2020-05-17 | lib9: add close | Russ Cox | 1 | -0/+7 | |
More preparation for opendir. | |||||
2020-05-17 | lib9: merge create, open, dirread into open.c | Russ Cox | 1 | -0/+270 | |
Preparation for using opendir. | |||||
2005-03-18 | better error message | rsc | 1 | -0/+1 | |
2005-02-11 | hard code list of plan 9 services in case they are not in /etc/services | rsc | 1 | -0/+4 | |
2005-01-07 | debugging for sam, and an old fix forgotten | rsc | 1 | -0/+4 | |
2005-01-07 | do not depend on flock | rsc | 1 | -1/+6 | |
2004-06-11 | get this right | rsc | 1 | -3/+4 | |
2004-06-11 | add OLOCK | rsc | 1 | -2/+10 | |
2004-05-14 | C | rsc | 1 | -0/+3 | |
little bugs . wq VS: ---------------------------------------------------------------------- | |||||
2004-05-14 | little bug fixes | rsc | 1 | -1/+1 | |
2004-04-29 | add -W to specify window size. | rsc | 1 | -0/+5 | |
various other little fixes. | |||||
2004-03-25 | Today's changes. | rsc | 1 | -8/+1 | |
More changes. | |||||
2003-12-11 | More files related to user-level file servers. | rsc | 1 | -0/+38 | |
Also add acme! |