blob: e77b54dbfa757d19ec4402d2aa0ede9c339a8a41 (
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
|
#include <u.h>
#include <libc.h>
#include <draw.h>
/* Connect us to new window, if possible */
int
newwindow(char *str)
{
int fd;
char *wsys;
char buf[256];
wsys = getenv("wsys");
if(wsys == nil)
return -1;
fd = open(wsys, ORDWR);
free(wsys);
if(fd < 0)
return -1;
rfork(RFNAMEG);
if(str)
snprint(buf, sizeof buf, "new %s", str);
else
strcpy(buf, "new");
return mount(fd, -1, "/dev", MBEFORE, buf);
}
|