summaryrefslogtreecommitdiff
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* Use PY_MAJOR_VERSION instead of PY_VERSION_HEX in C extension.Sebastien Martini2011-04-051-1/+1
|
* By default use system calls numbers defined in <sys/syscall.h>.Sebastien Martini2011-02-021-79/+85
|
* Added C-coded inotify syscalls interface.Sebastien Martini2011-01-281-0/+193
- If compile_ext_mod is set to True in setup.py, this extension is explicitly compiled. - If compile_ext_mod is set to False in setup.py (default), this extension is compiled only if no inotify support has been found from ctypes. - Replaced exception type UnsupportedLibcVersionError by InotifyBindingNotFoundError. WatchManager.__init__() may raise this exception on error. - SysCtlINotify (class providing access to inotify /proc variables) is not instanciated (therefore not available) when the C extension is used. It is only available from ctypes.