This adds support for the poll() function. Subclasses of fuse.Fuse
can add a poll method with the following signature:
def poll(self, path, pollhandle):
pass
The pollhandle parameter can be saved and used later to send a
notification by calling:
fuse.FuseNotifyPoll(pollhandle)
15 lines
399 B
Text
15 lines
399 B
Text
Python bindings
|
|
===============
|
|
|
|
Csaba Henk <csaba.henk@creo.hu>
|
|
Sebastien Delafond <sdelafond@gmx.net>
|
|
Steven James
|
|
Jeff Epler <jepler@unpythonic.dhs.org>
|
|
|
|
Contributions
|
|
=============
|
|
|
|
hello.py by Andrew Straw <strawman@astraw.com>
|
|
threading related code cleaned up by Miklos Szeredi <miklos@szeredi.hu>
|
|
IOCTL support by Cédric Carrée
|
|
poll support by David Lechner <david@lechnology.com>
|