summaryrefslogtreecommitdiff
path: root/lib/internal/freelist.js
diff options
context:
space:
mode:
authorBastian Krol <bastian.krol@instana.com>2018-10-01 17:11:25 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-10-10 08:45:56 +0200
commiteb9748d222061381236f19cbe162cf9eb2e034ad (patch)
tree88d7412a51fc3966d059cff654002c4d9b160348 /lib/internal/freelist.js
parent45c70b0ce79c5c606247356bf4697dae6f60c810 (diff)
downloadandroid-node-v8-eb9748d222061381236f19cbe162cf9eb2e034ad.tar.gz
android-node-v8-eb9748d222061381236f19cbe162cf9eb2e034ad.tar.bz2
android-node-v8-eb9748d222061381236f19cbe162cf9eb2e034ad.zip
async_hooks: add missing async_hooks destroys in AsyncReset
This adds missing async_hooks destroy calls for sockets (in _http_agent.js) and HTTP parsers. We need to emit a destroy in AsyncWrap#AsyncReset before assigning a new async_id when the instance has already been in use and is being recycled, because in that case, we have already emitted an init for the "old" async_id. This also removes a duplicated init call for HTTP parser: Each time a new parser was created, AsyncReset was being called via the C++ Parser class constructor (super constructor AsyncWrap) and also via Parser::Reinitialize. PR-URL: https://github.com/nodejs/node/pull/23272 Fixes: https://github.com/nodejs/node/issues/19859 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'lib/internal/freelist.js')
-rw-r--r--lib/internal/freelist.js21
1 files changed, 17 insertions, 4 deletions
diff --git a/lib/internal/freelist.js b/lib/internal/freelist.js
index 7e9cef9528..04d684e833 100644
--- a/lib/internal/freelist.js
+++ b/lib/internal/freelist.js
@@ -1,5 +1,7 @@
'use strict';
+const is_reused_symbol = Symbol('isReused');
+
class FreeList {
constructor(name, max, ctor) {
this.name = name;
@@ -9,9 +11,15 @@ class FreeList {
}
alloc() {
- return this.list.length ?
- this.list.pop() :
- this.ctor.apply(this, arguments);
+ let item;
+ if (this.list.length > 0) {
+ item = this.list.pop();
+ item[is_reused_symbol] = true;
+ } else {
+ item = this.ctor.apply(this, arguments);
+ item[is_reused_symbol] = false;
+ }
+ return item;
}
free(obj) {
@@ -23,4 +31,9 @@ class FreeList {
}
}
-module.exports = FreeList;
+module.exports = {
+ FreeList,
+ symbols: {
+ is_reused_symbol
+ }
+};