lib9p: expose Srv.forker handler and srvforker(), threadsrvforker() and threadsrv() functions
To use srvrease()/srvaquire() we need to have a way to spawn new processes to handle the service loop. This functionality was provided by the internal _forker() function which was eigther rfork or libthread based implementation depending on if postmountsrv() or threadpostmountsrv() where called. For servers who want to use srv() directly, _forker would not be initialized so srvrelease() could not be used. To untangle this, we get rid of the global _forker handler and put the handler in the Srv structure. Which will get initialized (when nil) to eigther srvforker() or threadsrvforker() depending on if the thread or non-thread entry points where used. For symmetry, we provde new threadsrv() and threadpostsrv() functions which handle the default initialization of Srv.forker. This also allows a user to provide his own forker function, maybe to conserve stack space. To avoid dead code, we put each of these function in their own object file. Note, this also allows a user to define its own srvforker() symbol.
This commit is contained in:
parent
013b498314
commit
f6509078ed
15 changed files with 201 additions and 125 deletions
13
sys/src/lib9p/threadpostsrv.c
Normal file
13
sys/src/lib9p/threadpostsrv.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <fcall.h>
|
||||
#include <thread.h>
|
||||
#include <9p.h>
|
||||
|
||||
void
|
||||
threadpostsrv(Srv *s, char *name)
|
||||
{
|
||||
if(s->forker == nil)
|
||||
s->forker = threadsrvforker;
|
||||
postsrv(s, name);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue