summaryrefslogtreecommitdiff
path: root/src/handle_wrap.h
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-06-04 12:21:58 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-06-04 12:22:03 +0200
commita7820a15e7eb4e57a4fe2f076e877dcc6069358c (patch)
tree47e6ba0c43a76064642415944ec981b8194bfa2e /src/handle_wrap.h
parent72b92e92d39fa8c513d4166c1f0feed48241aac7 (diff)
downloadandroid-node-v8-a7820a15e7eb4e57a4fe2f076e877dcc6069358c.tar.gz
android-node-v8-a7820a15e7eb4e57a4fe2f076e877dcc6069358c.tar.bz2
android-node-v8-a7820a15e7eb4e57a4fe2f076e877dcc6069358c.zip
src: replace ngx-queue.h with queue.h
No functional changes, just one less entry in the LICENSE file.
Diffstat (limited to 'src/handle_wrap.h')
-rw-r--r--src/handle_wrap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handle_wrap.h b/src/handle_wrap.h
index d77485cdf6..3a42148a62 100644
--- a/src/handle_wrap.h
+++ b/src/handle_wrap.h
@@ -22,7 +22,7 @@
#ifndef HANDLE_WRAP_H_
#define HANDLE_WRAP_H_
-#include "ngx-queue.h"
+#include "queue.h"
namespace node {
@@ -70,7 +70,7 @@ class HandleWrap {
private:
friend v8::Handle<v8::Value> GetActiveHandles(const v8::Arguments&);
static void OnClose(uv_handle_t* handle);
- ngx_queue_t handle_wrap_queue_;
+ QUEUE handle_wrap_queue_;
// Using double underscore due to handle_ member in tcp_wrap. Probably
// tcp_wrap should rename it's member to 'handle'.
uv_handle_t* handle__;