summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2014-12-03 12:04:56 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-12-03 12:04:56 -0800
commit21b4f8c501d67ed8ecf6dedbdd55064a5c8f823c (patch)
tree17fc657d1d0b4438bbd487b4919f9fd252cb0e36 /include
parent90a7be907966e30514820dfdf31a03e0425347d6 (diff)
downloadqtlocation-mapboxgl-21b4f8c501d67ed8ecf6dedbdd55064a5c8f823c.tar.gz
libuv handles must be deallocated asynchronously
Fixes #659
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/util/uv_detail.hpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/include/mbgl/util/uv_detail.hpp b/include/mbgl/util/uv_detail.hpp
index 099e08d4f1..b6b9be208d 100644
--- a/include/mbgl/util/uv_detail.hpp
+++ b/include/mbgl/util/uv_detail.hpp
@@ -14,8 +14,10 @@
namespace uv {
template <class T>
-void close(T* handle) {
- uv_close(reinterpret_cast<uv_handle_t*>(handle), nullptr);
+void close(std::unique_ptr<T> ptr) {
+ uv_close(reinterpret_cast<uv_handle_t*>(ptr.release()), [](uv_handle_t* handle) {
+ delete reinterpret_cast<T*>(handle);
+ });
}
class thread : public mbgl::util::noncopyable {
@@ -75,19 +77,21 @@ private:
class async : public mbgl::util::noncopyable {
public:
inline async(uv_loop_t* loop, std::function<void ()> fn_)
- : fn(fn_) {
- a.data = this;
- if (uv_async_init(loop, &a, async_cb) != 0) {
+ : a(new uv_async_t)
+ , fn(fn_)
+ {
+ a->data = this;
+ if (uv_async_init(loop, a.get(), async_cb) != 0) {
throw std::runtime_error("failed to initialize async");
}
}
inline ~async() {
- close(&a);
+ close(std::move(a));
}
inline void send() {
- if (uv_async_send(&a) != 0) {
+ if (uv_async_send(a.get()) != 0) {
throw std::runtime_error("failed to async send");
}
}
@@ -101,7 +105,7 @@ private:
reinterpret_cast<async*>(a->data)->fn();
}
- uv_async_t a;
+ std::unique_ptr<uv_async_t> a;
std::function<void ()> fn;
};