blob: 337d25445fa7f0b2327f54e719ea3123c5bcecb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <u.h>
#include <libc.h>
#include <fcall.h>
#include <thread.h>
#include <9p.h>
static void
launchsrv(void *v)
{
srv(v);
}
void
threadpostmountsrv(Srv *s, char *name, char *mtpt, int flag)
{
int fd[2];
if(mtpt)
sysfatal("mount not supported");
if(!s->nopipe){
if(pipe(fd) < 0)
sysfatal("pipe: %r");
s->infd = s->outfd = fd[1];
s->srvfd = fd[0];
}
if(name && post9pservice(s->srvfd, name) < 0)
sysfatal("post9pservice %s: %r", name);
proccreate(launchsrv, s, 32*1024);
}
|