Commit 50d7206e29a188a45536bbd1852af0ebb466ddae

Thomas de Grivel 2017-05-21T16:58:14

Export more symbols

diff --git a/package.lisp b/package.lisp
index 8057ccc..1d4cbeb 100644
--- a/package.lisp
+++ b/package.lisp
@@ -2,8 +2,29 @@
 (in-package :common-lisp)
 
 (defpackage :cffi-epoll
-  (:use :common-lisp :cffi :cffi-errno)
+  (:nicknames :epoll)
+  (:use
+   :cffi
+   :common-lisp
+   :errno)
+  (:shadow
+   #:mod)
   (:export
    #:create
+   #:with
    #:ctl
-   #:wait))
+   #:add
+   #:mod
+   #:del
+   #:wait
+   #:+ctl-add+
+   #:+ctl-mod+
+   #:+ctl-del+
+   #:+in+
+   #:+out+
+   #:+rdhup+
+   #:+pri+
+   #:+err+
+   #:+hup+
+   #:+et+
+   #:+exclusive+))