diff --git a/runtime/src/native_loader.rs b/runtime/src/native_loader.rs index e288a8bc51..e37423d3c7 100644 --- a/runtime/src/native_loader.rs +++ b/runtime/src/native_loader.rs @@ -60,7 +60,7 @@ fn library_open(path: &PathBuf) -> std::io::Result { #[cfg(not(windows))] fn library_open(path: &PathBuf) -> std::io::Result { - // TODO linux tls bug can cause crash on dlclose(), workaround by never unloading + // Linux tls bug can cause crash on dlclose(), workaround by never unloading Library::open(Some(path), libc::RTLD_NODELETE | libc::RTLD_NOW) }