Alexander Torstling
Alexander Torstling
I took a stab at replacing thread-scoped with crossbeam: https://github.com/zargony/rust-fuse/pull/121 . I think it's useful to keep the spawn_mount function, since it adds the automatic unmount functionality when the handle...
@cuviper Yes, a public dependency is unfortunate. I hadn't really thought about it that way. But tying the thread lifetime to such a scope is the way that crossbeam gets...
Neat. It wasn't clear to me that that was possible with re-exporting. I just tested it, it worked like a charm. I can change the PR to do that if...
Sounds good. I re-exported scope and Scope like you suggested. I'm a bit unsure what happens with the public BackgroundSession struct, which has a crossbeam ScopedJoinHandle member. Will that be...
@cuviper Thanks. If I interpret you correctly, ScopedJoinHandle (as well as Option) implements both Send and Sync, so BackgroundSession shouldn't lose those traits.
I actually overlooked the pub part as well. I agree that it doesn't make much sense. I'll change both fields to be private.
Är inte "kvittera ut" det som avses med checkout?
+100. Just debugged myself to this bug and wasted lots of time doing so.
Hello @netikras ! It should find functions, there's a test for it in https://github.com/atorstling/origin/blob/master/tests.py#L77 It might be a priority issue or a plain bug. What happens if you rename the...
Ok, thanks for investigating. I'll look into it when I get back to a computer. If you want to run tests, try "make check". You'll also need to install fakechroot...