/cusepy

Automatically exported from code.google.com/p/cusepy for the purposes of having a CUSE cribsheet to adjust one of the C++ libraries for CUSE to support my inscrutable projects...

Primary LanguagePython

Note that the low-level API needs to generate the Python interface
to the local CUSE library before it can be used. For that,
you have to have both the CUSE headers and the GCC-XML
(http://www.gccxml.org) compiler installed.

The interface is generated by running 

# python setup.py build_ctypes

this will create the file cuse/cuse_api.py

Please keep in mind that it's probably not wise to ship this file
with your application, because it has been generated for your
system only.


Note that the fuse_daemonize() function is deliberately not exported
by this module. If you want to daemonize a Python process, you have to
do so from within Python or you will get into trouble. See
 - http://bugs.python.org/issue7931 
 - http://www.python.org/dev/peps/pep-3143/