diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-09-21 09:29:21 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-09-21 09:29:21 +0000 |
commit | 6b6f82c8a58b2edbd029909be2ba1057c00cd6ed (patch) | |
tree | 2f1eeb781679c34ec9289dabb5710fbbc00771e5 /src/lib/rib.c | |
parent | b66cf853efee91fcc43e2bbfcb1e39071b775d49 (diff) | |
parent | 1e3d0e5e869d6a920987d20cc6ed7a67f5c426bd (diff) | |
download | ouroboros-6b6f82c8a58b2edbd029909be2ba1057c00cd6ed.tar.gz ouroboros-6b6f82c8a58b2edbd029909be2ba1057c00cd6ed.zip |
Merged in dstaesse/ouroboros/be-rib (pull request #606)
lib: Pass the fuse struct to the handling thread
Diffstat (limited to 'src/lib/rib.c')
-rw-r--r-- | src/lib/rib.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/rib.c b/src/lib/rib.c index 579d9aac..dc78696b 100644 --- a/src/lib/rib.c +++ b/src/lib/rib.c @@ -227,9 +227,7 @@ static struct fuse_operations r_ops = { static void * fuse_thr(void * o) { - (void) o; - - if (fuse_loop(rib.fuse) < 0) + if (fuse_loop((struct fuse *) o) < 0) return (void *) -1; return (void *) 0; @@ -276,7 +274,7 @@ int rib_init(const char * prefix) if (pthread_rwlock_init(&rib.lock, NULL)) goto fail_rwlock_init; - if (pthread_create(&rib.fuse_thr, NULL, fuse_thr, NULL)) + if (pthread_create(&rib.fuse_thr, NULL, fuse_thr, rib.fuse)) goto fail_fuse_thr; fuse_opt_free_args(&args); |