Changed everything to inotify naming.
[cl-inotify.git] / package.lisp
index 6d4fd96..ac6380f 100644 (file)
@@ -1,7 +1,7 @@
 (in-package #:cl-user)
 
-(defpackage cl-notify
-  (:use #:cl #:cffi #:utils-frahm #:anaphora)
+(defpackage cl-inotify
+  (:use #:cl #:cffi)
   (:export ;;; used types for documentation
           #:inotify-add/read-flag
           #:inotify-read-flag
           ;;; very raw
           #:read-raw-event-from-stream
 
-          #:close-notify
+          #:close-inotify
 
           ;;; event parsing functions
-          #:make-unregistered-notify
+          #:make-unregistered-inotify
           #:read-event-from-stream
           #:watch-raw
           #:unwatch-raw
 
           ;;; enhanced functionality
-          #:make-notify
+          #:make-inotify
           #:watchedp
           #:watch
           #:unwatch
@@ -30,6 +30,5 @@
           ;;; convenience functions
           #:list-watched
           #:do-events
-          #:read-events
-          )
+          #:next-events)
   (:documentation "A binding (not only?) for the LINUX inotify(7) API."))