Skip to content

Commit

Permalink
Inline POD fixups, and change =head1 poll() to =head3.
Browse files Browse the repository at this point in the history
  • Loading branch information
demonfoo committed Feb 29, 2012
1 parent 7a6104d commit 1a6a7c5
Showing 1 changed file with 7 additions and 24 deletions.
31 changes: 7 additions & 24 deletions Fuse.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -187,27 +187,18 @@ many valid keys. Most of them correspond with names of callback
functions, as described in section 'FUNCTIONS YOUR FILESYSTEM MAY IMPLEMENT'. functions, as described in section 'FUNCTIONS YOUR FILESYSTEM MAY IMPLEMENT'.
A few special keys also exist: A few special keys also exist:
debug => boolean
=over 1 =over 1
This turns FUSE call tracing on and off. Default is 0 (which means off). =item debug => boolean
=back
mountpoint => string This turns FUSE call tracing on and off. Default is 0 (which means off).
=over 1 =item mountpoint => string
The point at which to mount this filesystem. There is no default, you must The point at which to mount this filesystem. There is no default, you must
specify this. An example would be '/mnt'. specify this. An example would be '/mnt'.
=back =item mountopts => string
mountopts => string
=over 1
This is a comma separated list of mount options to pass to the FUSE kernel This is a comma separated list of mount options to pass to the FUSE kernel
module. module.
Expand All @@ -219,11 +210,7 @@ need 'user_allow_other' in /etc/fuse.conf as per the FUSE documention
mountopts => "allow_other" or mountopts => "allow_other" or
mountopts => "" mountopts => ""
=back =item threaded => boolean
threaded => boolean
=over 1
This turns FUSE multithreading on and off. The default is 0, meaning your FUSE This turns FUSE multithreading on and off. The default is 0, meaning your FUSE
script will run in single-threaded mode. Note that single-threaded mode also script will run in single-threaded mode. Note that single-threaded mode also
Expand All @@ -247,11 +234,7 @@ you're using are also thread-safe.
built with USE_ITHREADS, or if you have failed to use threads or built with USE_ITHREADS, or if you have failed to use threads or
threads::shared.) threads::shared.)
=back =item nullpath_ok => boolean
nullpath_ok => boolean
=over 1
This flag tells Fuse to not pass paths for functions that operate on file This flag tells Fuse to not pass paths for functions that operate on file
or directory handles. This will yield empty path parameters for functions or directory handles. This will yield empty path parameters for functions
Expand Down Expand Up @@ -724,7 +707,7 @@ Keep in mind that read and write are from the client perspective, so
read from our end means data is going *out*, and write means data is read from our end means data is going *out*, and write means data is
coming *in*. It can be slightly confusing. coming *in*. It can be slightly confusing.
=head1 poll =head3 poll
Arguments: Pathname, poll handle ID (or undef if none), event mask, (optional) file handle Arguments: Pathname, poll handle ID (or undef if none), event mask, (optional) file handle
Expand Down

0 comments on commit 1a6a7c5

Please sign in to comment.