Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-03-06 18:32:40 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2013-03-06 18:32:40 +0400
commit958ab661cbede92470ffd47b23607c61f5e61e17 (patch)
tree170604f950aedb908c54e2aea1c2835b6f85c8b8 /src/handle_wrap.h
parent3d20905b7055dec006041c1fda0094bef17c80ee (diff)
handle_wrap: add close callback support
Diffstat (limited to 'src/handle_wrap.h')
-rw-r--r--src/handle_wrap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/handle_wrap.h b/src/handle_wrap.h
index c77ec77f1a0..6780cd72fe0 100644
--- a/src/handle_wrap.h
+++ b/src/handle_wrap.h
@@ -73,6 +73,7 @@ class HandleWrap {
unsigned int flags_;
static const unsigned int kUnref = 1;
+ static const unsigned int kCloseCallback = 2;
};