Browse Source

fuse_loop.cpp

Antonio SJ Musumeci 1 month ago
parent
commit
0e7b79c224
  1. 14
      libfuse/lib/fuse_loop.cpp

14
libfuse/lib/fuse_loop.cpp

@ -30,7 +30,6 @@
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <syslog.h>
#include <unistd.h>
@ -312,6 +311,19 @@ fuse_session_loop_mt(struct fuse_session *se_,
PinThreads::pin(read_threads,process_threads,pin_threads_type_);
SysLog::log(LOG_INFO,
"read-thread-count={}; "
"process-thread-count={}; "
"process-thread-queue-depth={}; "
"pin-threads={};",
read_thread_count,
process_thread_count,
process_thread_queue_depth,
pin_threads_type_);
syslog(LOG_INFO,
"read-thread-count=%d; "
"process-thread-count=%d; "

Loading…
Cancel
Save