Taritsyn / JavaScriptEngineSwitcher

JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines. This library allows you to quickly and easily switch to using of another JavaScript engine.
Apache License 2.0
446 stars 49 forks source link

The futex facility returned an unexpected error code when running ChakraCoreJsEngine on Linux #118

Closed haihai1999 closed 1 month ago

haihai1999 commented 6 months ago

1: Related information: ChakraCoreJsEngine ver 3.24.1 Application. net 8 Server Ubuntu 22.4 2: Problems that arise The code is as follows: Var chakraCoreSet=new ChakraCoreSets { DisableEval=false, Enabling ExperimentalFeatures=true, DisableBackgroundWork=false }; Using (var_engine=new ChakraCoreJsEngine (chakraCoreSet)) { _engine Execute (jsCode)// JsCode is the executed JS code, with around 50 lines of code } When executing code, Linux directly reports the error The futex facility returned an unexpected error code service has been stopped. When the configuration item DisableBackgroundWork in chakraCoreSet is changed to true, the above error will not occur.

Taritsyn commented 6 months ago

Hello!

ChakraCoreJsEngine ver 3.24.1

First, try updating to version 3.26.0. A similar error (“Futex_fatal_error in ./nptl/pthread_mutex_lock.c”) was recently fixed in the original library.

Christian-Oleson commented 1 month ago

I recently hit this on version: JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64 Version="3.21.0" I'll try the upgrade to see if that resolves my problem.

Christian-Oleson commented 1 month ago

Updating my Versions to latest in both Native.Linux and the main JavaScriptEngineSwitcher fix the issue for me.