nrath-js
nrath-js
I'm building with ``` "-DUSE_THIRDPARTY_LIBRARIES=OFF" "-DENABLE_TESTING=OFF" "-DENABLE_PUSH=OFF" "-DTHIRDPARTY_CIVETWEB_WITH_SSL=OFF" "-DBUILD_SHARED_LIBS=OFF" ``` ..but when I'm eventually linking the static libprometheus-cpp-static into my program, I'm getting a number of warnings about unresolved symbols:...
The FUSE init flags are unlikely to be of use unless one is debugging a problem with the filesystem. The messages about channel status get printed for every thread, and...
At the moment, we are indiscriminately returning a SessionFailure("epoll error") if any of the registered file descriptors would return an error upon read. This means that the more detailed error...
I've reverse engineered that from code and my libfuse knowledge, but it would be good for someone else to confirm that I understood everything correctly. Fixes: #196.
As far as I can tell, the set of options returned by a Filesystem's `init` method is simply thrown away: https://github.com/cloud-hypervisor/fuse-backend-rs/blob/master/src/api/vfs/sync_io.rs#L55 I can also see this in the debug output...
As far as I can tell, when using the FUSE transport and unmounting the filesystem with "fusermount3 -u", this results in FuseChannel's `get_request` method to fail when calling `self.poll.poll`. This...
I have not been able to find any documentation for the `add_entry: &mut dyn FnMut(DirEntry
Building the example "hello.rs" filesystem, I am getting an executable that is dynamically linked against libfuse3: ``` ❯ ldd target/debug/hello linux-vdso.so.1 (0x00007ffc6355e000) libfuse3.so.3 => /lib64/libfuse3.so.3 (0x00007f85be344000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f85bd600000)...