File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3095,16 +3095,17 @@ static void psync_fs_init_once(){
3095
3095
}
3096
3096
3097
3097
static void psync_fuse_thread (){
3098
+ int fr ;
3098
3099
pthread_mutex_lock (& start_mutex );
3099
3100
if (!initonce ){
3100
3101
psync_fs_init_once ();
3101
3102
initonce = 1 ;
3102
3103
}
3103
3104
pthread_mutex_unlock (& start_mutex );
3104
3105
debug (D_NOTICE , "running fuse_loop_mt" );
3105
- fuse_loop_mt (psync_fuse );
3106
+ fr = fuse_loop_mt (psync_fuse );
3107
+ debug (D_NOTICE , "fuse_loop_mt exited with code %d, running fuse_destroy" , fr );
3106
3108
pthread_mutex_lock (& start_mutex );
3107
- debug (D_NOTICE , "fuse_loop_mt exited, running fuse_destroy" );
3108
3109
fuse_destroy (psync_fuse );
3109
3110
debug (D_NOTICE , "fuse_destroy exited" );
3110
3111
/*#if defined(P_OS_MACOSX)
You can’t perform that action at this time.
0 commit comments