Changeset 49 for branches/home/psmith/restructure/src/utils
- Timestamp:
- 01/22/07 04:12:43 (18 years ago)
- Location:
- branches/home/psmith/restructure/src/utils
- Files:
-
- 2 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/home/psmith/restructure/src/utils/nio-utils-package.lisp ¶
r48 r49 1 1 #| 2 Copyright (c) 200 6 Risto Laakso2 Copyright (c) 2007 3 3 All rights reserved. 4 4 … … 25 25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 26 |# 27 (defpackage :nio- compat(:use :cl)27 (defpackage :nio-utils (:use :cl) 28 28 29 29 (:export 30 30 31 ;; errno.lisp32 get-errno +ERRNO_EAGAIN+33 34 ;;concurrent-queue35 concurrent-queue add take36 37 31 ;;utils 38 32 format-log -
TabularUnified branches/home/psmith/restructure/src/utils/nio-utils.asd ¶
r44 r49 3 3 (in-package :asdf) 4 4 5 (defsystem :nio- compat5 (defsystem :nio-utils 6 6 7 :components ((:file "nio-compat-package") 8 (:file "errno" :depends-on ("nio-compat-package")) 9 (:file "concurrent-queue" :depends-on ("nio-compat-package")) 10 (:file "utils" :depends-on ("nio-compat-package")) 7 :components ((:file "nio-utils-package") 8 (:file "utils" :depends-on ("nio-utils-package")) 11 9 ) 12 10 -
TabularUnified branches/home/psmith/restructure/src/utils/utils.lisp ¶
r48 r49 26 26 |# 27 27 28 (in-package :nio- compat)28 (in-package :nio-utils) 29 29 30 30 (declaim (optimize (debug 3) (speed 3) (space 0)))
Note: See TracChangeset
for help on using the changeset viewer.