Konstantin A. Olkhovskiy

Results 179 comments of Konstantin A. Olkhovskiy

> If the user looks for for a specific path that does not match any file, it would be nice to actually create the file just by typing enter (i.e....

I've ran into this problem and googled this issue, which helped me to resolve it. My binary turned out to be not instrumented, I've added compiler flags only to library...

Hello, Thank you for pull request! I'm on vacation currently with poor Internet access. Will take a look at it later when I'm back. 17 июля 2015 г. 18:05 пользователь...

Hey, Sorry for the late reply. I don't mind including `fbr_cond_wait_wto()`, but I'm not completely sure I understand the rationale behind fiber-friendly poll wrapper. libevfibers is based upon libev, and...

Why not convert those programs to use libev watchers directly? No conversion to fiber model required. Your approach of adding `nfds` libev I/O watchers and then removing them after possibly...

Any adequate library, including libcurl, usually provide enough support for asynchronous operations. See [this example](http://curl.haxx.se/libcurl/c/evhiperfifo.html) from libcurl, it integrates libcurl with libev. We successfully used this approach and created fiber...

> Overriding is a clever hack. The authors of this paper have used pth's override feature to "port" Apache and make it asynchronous. They create 100,000 "fibers". Imagine doing that...

> This is true for system threads too. The only guarantee is that the first > write would be completed before it returns. Another thread's write can be > executed...

In general agreed. Will dig into this when I have a spare minute.

Reason is an alternate syntax for OCaml, and the way record disambiguation works in OCaml is by matching record field names. That produces a Hindley-Milner constraint on the record type...