Author: psmith
Date: Wed Dec 27 20:05:42 2006
New Revision: 17
Added:
branches/home/psmith/restructure/src/buffer/nio-buffer.asd
- copied unchanged from r14, branches/home/psmith/restructure/nio-buffer.asd
branches/home/psmith/restructure/src/compat/nio-compat-package.lisp
branches/home/psmith/restructure/src/compat/nio-compat.asd
Removed:
branches/home/psmith/restructure/nio-buffer.asd
branches/home/psmith/restructure/src/load.lisp
Modified:
branches/home/psmith/restructure/src/event/event-notification.asd
Log:
more tidy
Added: branches/home/psmith/restructure/src/compat/nio-compat-package.lisp
==============================================================================
--- (empty file)
+++ branches/home/psmith/restructure/src/compat/nio-compat-package.lisp Wed Dec 27 20:05:42 2006
@@ -0,0 +1,34 @@
+#|
+Copyright (c) 2006 Risto Laakso
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+|#
+(defpackage :nio-compat (:use :cl)
+
+ (:export
+
+ ;; errno.lisp
+ get-errno +ERRNO_EAGAIN+
+
+ ))
Added: branches/home/psmith/restructure/src/compat/nio-compat.asd
==============================================================================
--- (empty file)
+++ branches/home/psmith/restructure/src/compat/nio-compat.asd Wed Dec 27 20:05:42 2006
@@ -0,0 +1,12 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+
+(in-package :asdf)
+
+(defsystem :nio-compat
+
+ :components ((:file "nio-compat-package")
+ (:file "errno" :depends-on ("nio-compat-package"))
+ )
+
+ :depends-on ())
+
Modified: branches/home/psmith/restructure/src/event/event-notification.asd
==============================================================================
--- branches/home/psmith/restructure/src/event/event-notification.asd (original)
+++ branches/home/psmith/restructure/src/event/event-notification.asd Wed Dec 27 20:05:42 2006
@@ -4,12 +4,11 @@
(defsystem :event-notification
- :components ((:file "src/event-notification")
- (:file "src/kqueue-cffi" :depends-on ("src/event-notification"))
- (:file "src/epoll-cffi" :depends-on ("src/event-notification"))
- (:file "src/kqueue" :depends-on ("src/event-notification" "src/kqueue-cffi"))
- (:file "src/errno")
- (:file "src/epoll" :depends-on ("src/event-notification" "src/epoll-cffi" "src/errno")))
+ :components ((:file "event-notification")
+ (:file "kqueue-cffi" :depends-on ("event-notification"))
+ (:file "epoll-cffi" :depends-on ("event-notification"))
+ (:file "kqueue" :depends-on ("event-notification" "kqueue-cffi"))
+ (:file "epoll" :depends-on ("event-notification" "epoll-cffi")))
- :depends-on (:cffi))
+ :depends-on (:cffi :nio-compat))