summaryrefslogblamecommitdiff
path: root/src/select/select.c
blob: 12322718f9e1377ae608fc1dceafdefe66d6d12e (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                               
                                                         


                     
#include <sys/select.h>
#include "syscall.h"
#include "libc.h"

int select(int n, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv)
{
	int r;
	CANCELPT_BEGIN;
	r = syscall(SYS_select, n, rfds, wfds, efds, tv);
	CANCELPT_END;
	return r;
}