aboutsummaryrefslogtreecommitdiff
path: root/src/lib9p
Commit message (Collapse)AuthorAgeFilesLines
* all: clean up misleading indentation warningsDan Cross2025-07-252-15/+16
| | | | | | | | | Misleading indentation warnings are actually useful, as they will occasionally reveal actual bugs (cf the apple `goto fail` security bug from a few years ago). Newer versions of clang (at least) are more aggressive about warnings in this regard, which has exposed a few warnings that are annoying. However, they are easy to address.
* lib9p: Fix compile errorAlexander Kapshuk2021-09-011-1/+0
| | | | | | | | | | | | | | | | | | | | | commit 385a6d5877258cee0cac6151e6359c9206006b01 removed src/lib9p/_post.c from the code base, but overlooked removing a reference to the _post.o object file from the src/lib9p/mkfile. This results in lib9p failing to compile: * Running on Darwin... * Compiler version: Apple clang version 12.0.5 (clang-1205.0.22.11) * Building mk... * Building everything (be patient)... >>> mk: don't know how to make '/Users/sasha/plan9port_fork/lib/lib9p.a(_post.o)' in /Users/sasha/plan9port_fork/src/lib9p mk: for i in ... : exit status=exit(1) Remove _post.o from the list of dependent object files from src/lib9p/mkfile to have lib9p compile. Fixes: 385a6d587725 ("lib9p: Remove postmountsrv (#505)")
* lib9p: Remove postmountsrv (#505)Ben Huntsman2021-08-303-113/+0
|
* libthread: add threadmaybackgroundRuss Cox2020-12-301-0/+6
| | | | | | | | Programs that want to background themselves now need to define threadmaybackground returning 1. This avoids a confusing (to people and debuggers) extra parent process for all the threaded programs that will never want to background themselves.
* Trivial changes: whitespace and modes.Dan Cross2020-01-108-26/+22
| | | | | | | | | 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>
* fix clang warnings reported by Tuncer AyazRuss Cox2012-10-211-2/+2
| | | | | R=rsc http://codereview.appspot.com/6744054
* delete 9P2000.uRuss Cox2010-12-072-17/+18
| | | | | | | thanks to Erik Quanstrom R=rsc http://codereview.appspot.com/3469042
* mergeRuss Cox2009-07-081-0/+3
|
* lib9p: add ramfs build rule (ramfs does not work)Russ Cox2008-07-091-0/+4
|
* lib9p: add Srv.foreground flagRuss Cox2008-07-041-1/+4
|
* lib9p: update diroffset correctly on rewindRuss Cox2008-07-041-1/+1
|
* lib9p: remove unused variablesRuss Cox2008-05-101-2/+0
|
* post9pservice: accept mtpt (via fuse)Russ Cox2008-05-051-5/+7
|
* lib9p: make ramfs buildRuss Cox2008-05-051-8/+8
|
* lib9p: fix Tattach ref count bugRuss Cox2008-02-041-1/+1
|
* correct ref counting in walkfile (Nemo)rsc2006-10-121-5/+1
|
* no need for auth.hrsc2006-06-2611-11/+0
|
* no need to call amountrsc2006-06-261-1/+2
|
* no warning (andrey)rsc2006-04-201-2/+0
|
* avoid double lock (lucho ionkov)rsc2006-04-192-3/+5
|
* Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms.rsc2006-04-012-7/+7
|
* faster destroyfid callsrsc2006-03-211-2/+42
|
* put NUL in right place!rsc2006-02-141-3/+4
|
* Experiment: ignore double-responds.rsc2006-02-052-3/+14
| | | | Also allow nil string as empty string in readstr.
* 9p.ursc2006-01-271-1/+1
|
* 9p2000.ursc2006-01-272-9/+15
|
* make chatty9p an extern int for the mac.rsc2005-03-041-0/+2
|
* build changesrsc2005-02-111-1/+0
|
* call srv->start at startrsc2005-02-112-7/+22
|
* use sysfatalrsc2005-02-081-12/+6
|
* updates from plan 9rsc2004-12-264-1/+16
|
* make things work on SunOSrsc2004-04-201-1/+13
|
* clean up when finished.rsc2004-04-191-1/+0
| | | | | don't set PLAN9 don't set PLAN9
* Small tweaksrsc2004-03-2117-0/+2175
Lots of new code imported.