blob: abdb882e84475df503428acec1cfb6f7e3f00ca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}
|