fuse_i.h (3a2b5b9cd9610f789f5e5f91a010d9fa3ca78632) | fuse_i.h (e96edd94d0887707fc41c5d21d5b488edcd31689) |
---|---|
1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 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 --- 388 unchanged lines hidden (view full) --- 397 /** Batching of FORGET requests (positive indicates FORGET batch) */ 398 int forget_batch; 399 400 /** O_ASYNC requests */ 401 struct fasync_struct *fasync; 402}; 403 404struct fuse_pqueue { | 1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 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 --- 388 unchanged lines hidden (view full) --- 397 /** Batching of FORGET requests (positive indicates FORGET batch) */ 398 int forget_batch; 399 400 /** O_ASYNC requests */ 401 struct fasync_struct *fasync; 402}; 403 404struct fuse_pqueue { |
405 /** Connection established */ 406 unsigned connected; 407 |
|
405 /** The list of requests being processed */ 406 struct list_head processing; 407 408 /** The list of requests under I/O */ 409 struct list_head io; 410}; 411 412/** --- 507 unchanged lines hidden --- | 408 /** The list of requests being processed */ 409 struct list_head processing; 410 411 /** The list of requests under I/O */ 412 struct list_head io; 413}; 414 415/** --- 507 unchanged lines hidden --- |