fuse icon indicating copy to clipboard operation
fuse copied to clipboard

C-based FUSE for macOS SDK

Results 8 fuse issues
Sort by recently updated
recently updated
newest added

Commit 5473133ecef92879ee57b524e0a065215f819969 introduced a number of log statement, and changed the DADiskUnmountOptions parameter passed to DADiskUnmount from kDADiskUnmountOptionDefault to kDADiskUnmountOptionForce. This commit partially reverts 5473133ecef92879ee57b524e0a065215f819969 so that it removes the...

This reduces the number of threads being created and destroyed by a huge number making it far easier to attempt to reason about what fuse is doing. It makes doing...

Turn off warnings regarding the pthread_setugid_np calls. They are deprecated because: "Use of per-thread security contexts is error-prone and discouraged."

This cleans up fuse_darwin significantly, and moves the semaphore calls over on top of libdispatch. libdispatch has been around since 10.6, so should be no compatibility problems. Advantages: reduction in...

There is at least one instance of people getting confused by this example at https://github.com/keybase/loopback/pull/2.

Mount callback thread launched in fuse_mount_core is not joined by anyone. So it can be alive after FUSE deinitialization and it can cause crashes. Wait it on unmount to fix...