diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-12-17 20:21:09 +0100 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-12-18 09:28:18 +0100 |
commit | c9b9ca09e0e5e4fc3c648eda795f45122a1c323b (patch) | |
tree | 63f6686a450d5402f1f162cab4c63948b99d212a /lib/fuse_loop_mt.c | |
parent | 752b59ac087658adb50d50a492d228d53081d195 (diff) | |
download | libfuse-c9b9ca09e0e5e4fc3c648eda795f45122a1c323b.tar.gz |
Rename _int to _internal
_int can be confused with 'integer'
Diffstat (limited to 'lib/fuse_loop_mt.c')
-rw-r--r-- | lib/fuse_loop_mt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/fuse_loop_mt.c b/lib/fuse_loop_mt.c index c66a503..0e79b49 100644 --- a/lib/fuse_loop_mt.c +++ b/lib/fuse_loop_mt.c @@ -135,7 +135,8 @@ static void *fuse_do_work(void *data) int res; pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); - res = fuse_session_receive_buf_int(mt->se, &w->fbuf, w->ch); + res = fuse_session_receive_buf_internal(mt->se, &w->fbuf, + w->ch); pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); if (res == -EINTR) continue; @@ -171,7 +172,7 @@ static void *fuse_do_work(void *data) fuse_loop_start_thread(mt); pthread_mutex_unlock(&mt->lock); - fuse_session_process_buf_int(mt->se, &w->fbuf, w->ch); + fuse_session_process_buf_internal(mt->se, &w->fbuf, w->ch); pthread_mutex_lock(&mt->lock); if (!isforget) |