You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module is unsafe because the linenoise library is not threadsafe. Use core::private::global_data to store a global std::sync::Mutex and use that mutex to protect all the calls in rl.
This module is unsafe because the linenoise library is not threadsafe. Use
core::private::global_datato store a globalstd::sync::Mutexand use that mutex to protect all the calls inrl.Then make all the functions safe: #3921