From rlaakso at common-lisp.net Fri Jan 13 18:25:47 2006 From: rlaakso at common-lisp.net (Risto Laakso) Date: Fri, 13 Jan 2006 19:25:47 +0100 (CET) Subject: [nio-cvs] CVS update: Module imported: nil Message-ID: <20060113182547.43C368815B@common-lisp.net> Update of /project/nio/cvsroot/nil In directory common-lisp.net:/tmp/cvs-serv15836 Log Message: Status: Vendor Tag: nil Release Tags: initial No conflicts created by this import Date: Fri Jan 13 19:25:46 2006 Author: rlaakso New module nil added From rlaakso at common-lisp.net Fri Jan 13 18:26:12 2006 From: rlaakso at common-lisp.net (Risto Laakso) Date: Fri, 13 Jan 2006 19:26:12 +0100 (CET) Subject: [nio-cvs] CVS update: Module imported: nio Message-ID: <20060113182612.83E008815B@common-lisp.net> Update of /project/nio/cvsroot/nio In directory common-lisp.net:/tmp/cvs-serv15853 Log Message: Status: Vendor Tag: nil Release Tags: initial No conflicts created by this import Date: Fri Jan 13 19:26:12 2006 Author: rlaakso New module nio added From rlaakso at common-lisp.net Fri Jan 13 18:28:20 2006 From: rlaakso at common-lisp.net (Risto Laakso) Date: Fri, 13 Jan 2006 19:28:20 +0100 (CET) Subject: [nio-cvs] CVS update: nio/cffi.lisp nio/epoll-cffi.lisp nio/epoll.lisp nio/event-notification.asd nio/event-notification.lisp nio/kqueue-cffi.lisp nio/kqueue.lisp nio/load.lisp nio/nio-httpd.lisp nio/nio-server.lisp nio/nio.asd nio/nio.lisp nio/socket-cffi.lisp nio/socket.lisp Message-ID: <20060113182820.6A7008815B@common-lisp.net> Update of /project/nio/cvsroot/nio In directory common-lisp.net:/tmp/cvs-serv15895 Added Files: cffi.lisp epoll-cffi.lisp epoll.lisp event-notification.asd event-notification.lisp kqueue-cffi.lisp kqueue.lisp load.lisp nio-httpd.lisp nio-server.lisp nio.asd nio.lisp socket-cffi.lisp socket.lisp Log Message: initial version Date: Fri Jan 13 19:28:15 2006 Author: rlaakso From rlaakso at common-lisp.net Fri Jan 13 18:30:56 2006 From: rlaakso at common-lisp.net (Risto Laakso) Date: Fri, 13 Jan 2006 19:30:56 +0100 (CET) Subject: [nio-cvs] CVS update: nio/cffi.lisp nio/epoll-cffi.lisp nio/epoll.lisp nio/event-notification.lisp nio/kqueue-cffi.lisp nio/kqueue.lisp nio/load.lisp nio/nio-httpd.lisp nio/nio-server.lisp nio/nio.lisp nio/socket-cffi.lisp nio/socket.lisp Message-ID: <20060113183056.15BD188567@common-lisp.net> Update of /project/nio/cvsroot/nio In directory common-lisp.net:/tmp/cvs-serv16287 Modified Files: cffi.lisp epoll-cffi.lisp epoll.lisp event-notification.lisp kqueue-cffi.lisp kqueue.lisp load.lisp nio-httpd.lisp nio-server.lisp nio.lisp socket-cffi.lisp socket.lisp Log Message: added license Date: Fri Jan 13 19:30:51 2006 Author: rlaakso Index: nio/cffi.lisp diff -u nio/cffi.lisp:1.1 nio/cffi.lisp:1.2 --- nio/cffi.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/cffi.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :nio) Index: nio/epoll-cffi.lisp diff -u nio/epoll-cffi.lisp:1.1 nio/epoll-cffi.lisp:1.2 --- nio/epoll-cffi.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/epoll-cffi.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :event-notification) #+linux Index: nio/epoll.lisp diff -u nio/epoll.lisp:1.1 nio/epoll.lisp:1.2 --- nio/epoll.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/epoll.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :event-notification) #+linux Index: nio/event-notification.lisp diff -u nio/event-notification.lisp:1.1 nio/event-notification.lisp:1.2 --- nio/event-notification.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/event-notification.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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 :event-notification (:use :cl :cffi) (:export make-event-queue add-fd remove-fd poll-events)) Index: nio/kqueue-cffi.lisp diff -u nio/kqueue-cffi.lisp:1.1 nio/kqueue-cffi.lisp:1.2 --- nio/kqueue-cffi.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/kqueue-cffi.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :event-notification) #+(or darwin freebsd) Index: nio/kqueue.lisp diff -u nio/kqueue.lisp:1.1 nio/kqueue.lisp:1.2 --- nio/kqueue.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/kqueue.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :event-notification) #+(or darwin freebsd) Index: nio/load.lisp diff -u nio/load.lisp:1.1 nio/load.lisp:1.2 --- nio/load.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/load.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (require 'asdf) (require 'cffi) Index: nio/nio-httpd.lisp diff -u nio/nio-httpd.lisp:1.1 nio/nio-httpd.lisp:1.2 --- nio/nio-httpd.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/nio-httpd.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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-httpd (:use :cl :nio-server :nio) (:export start)) (in-package :nio-httpd) Index: nio/nio-server.lisp diff -u nio/nio-server.lisp:1.1 nio/nio-server.lisp:1.2 --- nio/nio-server.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/nio-server.lisp Fri Jan 13 19:30:50 2006 @@ -1,3 +1,29 @@ +#| +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-server (:use :cl :nio :event-notification) (:export start-server)) (in-package :nio-server) Index: nio/nio.lisp diff -u nio/nio.lisp:1.1 nio/nio.lisp:1.2 --- nio/nio.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/nio.lisp Fri Jan 13 19:30:51 2006 @@ -1,3 +1,29 @@ +#| +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 (:use :cl :cffi) (:export Index: nio/socket-cffi.lisp diff -u nio/socket-cffi.lisp:1.1 nio/socket-cffi.lisp:1.2 --- nio/socket-cffi.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/socket-cffi.lisp Fri Jan 13 19:30:51 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :nio) Index: nio/socket.lisp diff -u nio/socket.lisp:1.1 nio/socket.lisp:1.2 --- nio/socket.lisp:1.1 Fri Jan 13 19:28:15 2006 +++ nio/socket.lisp Fri Jan 13 19:30:51 2006 @@ -1,3 +1,29 @@ +#| +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. +|# (in-package :nio) (declaim (optimize (debug 3))) From rlaakso at common-lisp.net Sun Jan 22 12:30:31 2006 From: rlaakso at common-lisp.net (CVS User rlaakso) Date: Sun, 22 Jan 2006 06:30:31 -0600 (CST) Subject: [nio-cvs] CVS nio Message-ID: <20060122123031.87E5F2755C@common-lisp.net> Update of /project/nio/cvsroot/nio In directory common-lisp:/tmp/cvs-serv739 Modified Files: event-notification.asd nio.asd Removed Files: cffi.lisp Log Message: fixed .asd's --- /project/nio/cvsroot/nio/event-notification.asd 2006/01/13 18:28:15 1.1 +++ /project/nio/cvsroot/nio/event-notification.asd 2006/01/22 12:30:31 1.2 @@ -4,11 +4,11 @@ (defsystem :event-notification - :components ((:file "package") - (:file "kqueue-cffi" :depends-on ("package")) - (:file "epoll-cffi" :depends-on ("package")) - (:file "kqueue" :depends-on ("package" "kqueue-cffi")) - (:file "epoll" :depends-on ("package" "epoll-cffi"))) + :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)) --- /project/nio/cvsroot/nio/nio.asd 2006/01/13 18:28:15 1.1 +++ /project/nio/cvsroot/nio/nio.asd 2006/01/22 12:30:31 1.2 @@ -4,9 +4,9 @@ (defsystem :nio - :components ((:file "package") - (:file "socket-cffi" :depends-on ("package")) - (:file "socket" :depends-on ("package" "socket-cffi"))) + :components ((:file "nio") + (:file "socket-cffi" :depends-on ("nio")) + (:file "socket" :depends-on ("nio" "socket-cffi"))) :depends-on (:cffi))