Set up global data structures and preload files.
| 38 | |
| 39 | // Set up global data structures and preload files. |
| 40 | WasmFS::WasmFS() : rootDirectory(initRootDirectory()), cwd(rootDirectory) { |
| 41 | wasmfs_before_preload(); |
| 42 | preloadFiles(); |
| 43 | } |
| 44 | |
| 45 | // Manual integration with LSan. LSan installs itself during startup at the |
| 46 | // first allocation, which happens inside WasmFS code (since the WasmFS global |
nothing calls this directly
no test coverage detected