aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/ioopen.c
blob: 219e581eaff1f45f156203495bd617065f6699f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <u.h>
#include <unistd.h>
#include <fcntl.h>
#include "threadimpl.h"

static long
_ioopen(va_list *arg)
{
	char *path;
	int mode;

	path = va_arg(*arg, char*);
	mode = va_arg(*arg, int);
	return open(path, mode);
}

int
ioopen(Ioproc *io, char *path, int mode)
{
	return iocall(io, _ioopen, path, mode);
}