Song.Yu

Results 3 issues of Song.Yu

For example, add some api like dill_tcp_get_fd, by using it, it provides the possibility to do something like ioctl: ioctl(dill_tcp_get_fd(s), SIOCOUTQ, &pending);

The test code is below: ``` #include #include static dill_coroutine void test_1(void) { int ret; while(dill_msleep(dill_now() + 1000) == 0) { printf("test_1: %d\n", ret); } } static int bndl; static...

I want to use the nng with libdill, but I found the nng not work correctly in libdill environment. ``` static dill_coroutine void test_pub(void) { nng_socket sock; nng_msg *msg; int...

backburner