summaryrefslogtreecommitdiff
path: root/src/dataqueue
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>
* lib,src: fix a few typos in commentsTobias Nießen2023-02-251-1/+1
| | | | | | | | PR-URL: https://github.com/nodejs/node/pull/46835 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@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-192-642/+552
| | | | | | 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-192-0/+1497
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>