fuse_i.h (db50b96c0f28a21c5a4a19ecaba12d0972aab06a) fuse_i.h (87729a5514e855ce2c71e3e33833a106b8caf2ae)
1/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2005 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8

--- 184 unchanged lines hidden (view full) ---

193 */
194struct fuse_conn {
195 /** Reference count */
196 int count;
197
198 /** The user id for this mount */
199 uid_t user_id;
200
1/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2005 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8

--- 184 unchanged lines hidden (view full) ---

193 */
194struct fuse_conn {
195 /** Reference count */
196 int count;
197
198 /** The user id for this mount */
199 uid_t user_id;
200
201 /** The group id for this mount */
202 gid_t group_id;
203
201 /** The fuse mount flags for this mount */
202 unsigned flags;
203
204 /** Maximum read size */
205 unsigned max_read;
206
207 /** Readers of the connection are waiting on this */
208 wait_queue_head_t waitq;

--- 229 unchanged lines hidden ---
204 /** The fuse mount flags for this mount */
205 unsigned flags;
206
207 /** Maximum read size */
208 unsigned max_read;
209
210 /** Readers of the connection are waiting on this */
211 wait_queue_head_t waitq;

--- 229 unchanged lines hidden ---