mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Other threads can still hold a valid handle to the tsfn after finalization if finalization was triggered by - release with napi_tsfn_abort, or - environment shutdown Handle this by: - protecting finalization itself with the mutex - if necessary, delay deletion after finalization to when thread_count drops to 0 - releasing all resources as soon as possible before deletion Fixes: https://github.com/nodejs/node/issues/55706 PR-URL: https://github.com/nodejs/node/pull/55877 Co-Authored-By: Gabriel Schulhof <gabrielschulhof@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
12 lines
245 B
Python
12 lines
245 B
Python
{
|
|
"targets": [
|
|
{
|
|
"target_name": "binding",
|
|
"sources": ["binding.cc"],
|
|
"cflags_cc": ["--std=c++20"],
|
|
'cflags!': [ '-fno-exceptions', '-fno-rtti' ],
|
|
'cflags_cc!': [ '-fno-exceptions', '-fno-rtti' ],
|
|
}
|
|
]
|
|
}
|