Results 6 comments of John Salmon

This is not a problem with sshfs or squashfuse. Even the most trivial FUSE filesystems, compiled from hello.c, null.c or hello_ll.c in the examples/ directory of the fuse library can...

Sorry, this should have been appended to my last post. ```diff --- a/hello_ll.c 2021-10-17 11:51:45.000000000 -0400 +++ b/hello_ll.c 2021-10-17 11:47:23.000000000 -0400 @@ -167,15 +167,49 @@ if (se != NULL) {...

The inability to unmount makes me wonder if this is related: https://github.com/osxfuse/osxfuse/issues/793#issuecomment-945151674 If a FUSE client "successfully" mounts, but then doesn't respond to getattr, statfs, etc., it can make it...

You may already know this - but FWIW, the issue is not limited to float. Doubles are just as surprising. The code below applies `ceil` and `floor` to reasonable values...

The problems with ceil and floor are not even limited to floating point Reps. Defining them in terms of operator= leads to trouble even with integral Reps. E.g., ``` using...

Yes. I understand that D1 and D2 can't be added, subtracted or compared. But what does that imply for `ceil(d1)`. If values of type D1 and D2 can't be compared,...