We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relevant to async. Memory still leaks. I am just calling uv.read_stop explicitly (in handle.lua), once reading has started, before shutting down.
luvit/luv#22
It's a hacky way, but it solves leaking. If you want I can send in a pull request.
The text was updated successfully, but these errors were encountered:
So inserting uv.read_stop() there solves the problem right?
uv.read_stop()
Sorry, something went wrong.
yes, pretty much wherever uv.close is called if you add if h.reading then uv.read_stop(h) end
soumith@0cbe855
No branches or pull requests
Relevant to async. Memory still leaks.
I am just calling uv.read_stop explicitly (in handle.lua), once reading has started, before shutting down.
luvit/luv#22
It's a hacky way, but it solves leaking. If you want I can send in a pull request.
The text was updated successfully, but these errors were encountered: