Halil Durak
Halil Durak
YueScript currently emulates `continue` with a combination of `if` check and `repeat`. I propose refactoring the generated code with `goto`. This might save us from if checks and repeat loop....
It would be nice if there was an alternative or maybe complete new (though I'm sure that people have used to it) syntax for method calling. Backslash `\` is both...
`socket.connect` or `connect` method blocks indefinitely when network speed or bandwith is low. It also blocks when DNS resolution fails or takes some time. Probably gets blocked at `socket_waitfd`, not...
Hi, I'm trying to send handles over pipes. I've created a socketpair and sent one end to a new thread and when I try to read/write between them, it just...
Currently `GetAddrInfoW` is used for DNS queries on Windows. WinDNS functions seems superior to getaddrinfo and it's counterparts. We have: - DnsQuery_A (for ANSI encoding) - DnsQuery_W (for Unicode encoding)...
Hi, assertion fails at `ASSERT_EQ(priority, 0)` in the following: ```c #ifdef __linux__ ASSERT_OK(uv_thread_getpriority(pthread_self(), &priority)); ASSERT_EQ(priority, 0); ASSERT_OK(uv_thread_setpriority(pthread_self(), UV_THREAD_PRIORITY_LOWEST)); ASSERT_OK(uv_thread_getpriority(pthread_self(), &priority)); ASSERT_EQ(priority, (0 - UV_THREAD_PRIORITY_LOWEST * 2)); #endif ``` make check...
A rewrite is planned once concurrency is back to the self-hosted compiler. I'll continue to work on TLS (#1) and server (#3) support once it's landed.