summaryrefslogtreecommitdiff
path: root/ext/-test-/wait_for_single_fd/wait_for_single_fd.c
blob: d406724a3f2e22d370a85adaaef2c1364704e6c4 (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 "ruby/ruby.h"
#include "ruby/io.h"

static VALUE
wait_for_single_fd(VALUE ign, VALUE fd, VALUE events, VALUE timeout)
{
    struct timeval tv;
    struct timeval *tvp = NULL;
    int rc;

    if (!NIL_P(timeout)) {
	tv = rb_time_timeval(timeout);
	tvp = &tv;
    }

    rc = rb_wait_for_single_fd(NUM2INT(fd), NUM2INT(events), tvp);
    if (rc == -1)
	rb_sys_fail("rb_wait_for_single_fd");
    return INT2NUM(rc);
}

void
Init_wait_for_single_fd(void)
{
    rb_define_const(rb_cObject, "RB_WAITFD_IN", INT2NUM(RB_WAITFD_IN));
    rb_define_const(rb_cObject, "RB_WAITFD_OUT", INT2NUM(RB_WAITFD_OUT));
    rb_define_const(rb_cObject, "RB_WAITFD_PRI", INT2NUM(RB_WAITFD_PRI));
    rb_define_singleton_method(rb_cIO, "wait_for_single_fd",
                               wait_for_single_fd, 3);
}