diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-03-30 20:06:33 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-03-30 20:06:33 +0200 |
commit | 9c844d90e117c9cb7b7fc16e4b0741a0df88456c (patch) | |
tree | ceccc3bfb5107ad2eb8ea94900053f410a6002b2 /sys/man/2 | |
parent | d9f65faf71ff09a3427309f8b69500280c481ac6 (diff) |
lib9p: add Srv.start
Diffstat (limited to 'sys/man/2')
-rw-r--r-- | sys/man/2/9p | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/man/2/9p b/sys/man/2/9p index 381308da4..dcff3e44a 100644 --- a/sys/man/2/9p +++ b/sys/man/2/9p @@ -52,6 +52,7 @@ typedef struct Srv { void (*destroyfid)(Fid *fid); void (*destroyreq)(Req *r); + void (*start)(Srv *s); void (*end)(Srv *s); void* aux; @@ -721,6 +722,7 @@ has been sent. .PP .IR Destroyfid , .IR destroyreq , +.IR start , and .I end are auxiliary functions, not called in direct response to 9P requests. @@ -751,6 +753,10 @@ is called to allow the program to dispose of the .IB r -> aux pointer. .TP +.I Start +This gets called (from the forked service process) +prior entering the 9P service loop. +.TP .I End Once the 9P service loop has finished (end of file been reached on the service pipe |