summaryrefslogtreecommitdiff
path: root/src/dataqueue/queue.cc
Commit message (Collapse)AuthorAgeFilesLines
* src: fix creating an ArrayBuffer from a Blob created with `openAsBlob`Daeyeon Jeong2023-05-041-2/+2
| | | | | | | Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/47691 Fixes: https://github.com/nodejs/node/issues/47683 Reviewed-By: James M Snell <jasnell@gmail.com>
* src: fix some recently introduced coverity issuesMichael Dawson2023-03-281-2/+2
| | | | | | | | Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/47240 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
* src: per-realm binding dataChengzhong Wu2023-02-211-7/+7
| | | | | | | | | | Binding data is inherited from BaseObject and created in a specific realm. They need to be tracked on a per-realm basis so that they can be released properly when a realm is disposed. PR-URL: https://github.com/nodejs/node/pull/46556 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
* src, lib: fixup lint and format issues for DataQueue/BlobJames M Snell2023-02-191-604/+515
| | | | | | Co-authored-by: flakey5 <73616808+flakey5@users.noreply.github.com> PR-URL: https://github.com/nodejs/node/pull/45258 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
* src: implement DataQueueJames M Snell2023-02-191-0/+1202
See documentation in dataqueue/queue.h for details Co-authored-by: flakey5 <73616808+flakey5@users.noreply.github.com> PR-URL: https://github.com/nodejs/node/pull/45258 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>