pub fn get_fs_driver_manager() -> &'static mut FileSystemDriverManager
Expand description
Global filesystem driver manager singleton
Provides global access to the FileSystemDriverManager instance. This function ensures thread-safe initialization of the singleton and returns a mutable reference for driver registration and filesystem creation.
§Returns
Mutable reference to the global FileSystemDriverManager instance
§Thread Safety
This function is marked as unsafe due to static mutable access, but the returned manager uses internal synchronization for thread safety.