diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-22 12:43:59 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-07-27 14:00:44 -0300 |
commit | 115b165bfa6bc1f85e6c6a8789ef49920b409822 (patch) | |
tree | 5139bde6b66ffe4b289d89bfd45333fb800a4462 /runtime/compiler/php.vim | |
parent | 8bd1fe9523e34cbce6f506a4058c79f6e2cb8cdd (diff) | |
download | rneovim-115b165bfa6bc1f85e6c6a8789ef49920b409822.tar.gz rneovim-115b165bfa6bc1f85e6c6a8789ef49920b409822.tar.bz2 rneovim-115b165bfa6bc1f85e6c6a8789ef49920b409822.zip |
rstream: remove 'reading' struct member
Not necessary, as discussed in #980.
From the libuv mailing list:
https://groups.google.com/forum/#!topic/libuv/OD38PeGeVgQ
E.g. this could happen (red: on Windows):
> > alloc_cb(handle1);
> > alloc_cb(handle2);
> > read_cb(handle1);
> > read_cb(handle2);
But this couldn't:
> > alloc_cb(handle1);
> > alloc_cb(handle1);
> > read_cb(handle1);
> > read_cb(handle1);
Because each stream has a 1-to-1 correspondance with a libuv handle. The
code removed was never executed.
Closes #980.
Diffstat (limited to 'runtime/compiler/php.vim')
0 files changed, 0 insertions, 0 deletions