Changeset 49 for branches/home
- Timestamp:
- 01/22/07 04:12:43 (18 years ago)
- Location:
- branches/home/psmith/restructure
- Files:
-
- 8 edited
- 2 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/home/psmith/restructure/run-yarpc-client.lisp ¶
r48 r49 7 7 (sleep 4) 8 8 (let ((sm (nio:add-connection "127.0.0.1" 16323 'nio-yarpc:yarpc-client-state-machine))) 9 ( format-log t "toplevel adding conn ~A~%" sm)9 (nio-utils:format-log t "toplevel adding conn ~A~%" sm) 10 10 (loop 11 ( format-log t "Toplevel Submitting job~%" )12 ( format-log t "Result of remote-execute ~A~%" (nio-yarpc:remote-execute sm "(nio-yarpc:test-rpc-list)"))))11 (nio-utils:format-log t "Toplevel Submitting job~%" ) 12 (nio-utils:format-log t "Result of remote-execute ~A~%" (nio-yarpc:remote-execute sm "(nio-yarpc:test-rpc-list)")))) -
TabularUnified branches/home/psmith/restructure/src/compat/nio-compat-package.lisp ¶
r48 r49 34 34 ;;concurrent-queue 35 35 concurrent-queue add take 36 37 ;;utils38 format-log39 36 )) -
TabularUnified branches/home/psmith/restructure/src/compat/nio-compat.asd ¶
r44 r49 8 8 (:file "errno" :depends-on ("nio-compat-package")) 9 9 (:file "concurrent-queue" :depends-on ("nio-compat-package")) 10 (:file "utils" :depends-on ("nio-compat-package"))11 10 ) 12 11 -
TabularUnified branches/home/psmith/restructure/src/io/nio-package.lisp ¶
r35 r49 25 25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 26 |# 27 (defpackage :nio (:use :cl :cffi : event-notification :nio-buffer :nio-compat)27 (defpackage :nio (:use :cl :cffi :nio-utils :event-notification :nio-buffer :nio-compat) 28 28 29 29 (:export -
TabularUnified branches/home/psmith/restructure/src/io/nio.asd ¶
r24 r49 13 13 ) 14 14 15 :depends-on (:cffi :event-notification :nio-buffer :nio-compat ))15 :depends-on (:cffi :event-notification :nio-buffer :nio-compat :nio-utils)) 16 16 -
TabularUnified branches/home/psmith/restructure/src/protocol/yarpc/nio-yarpc-package.lisp ¶
r45 r49 25 25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 26 |# 27 (defpackage :nio-yarpc (:use :cl :nio :nio-sm :nio-buffer )27 (defpackage :nio-yarpc (:use :cl :nio :nio-sm :nio-buffer :nio-utils) 28 28 29 29 (:export -
TabularUnified branches/home/psmith/restructure/src/statemachine/nio-sm-package.lisp ¶
r41 r49 25 25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 26 |# 27 (defpackage :nio-sm (:use :cl :nio :nio-buffer )27 (defpackage :nio-sm (:use :cl :nio :nio-buffer :nio-utils) 28 28 29 29 (:export -
TabularUnified branches/home/psmith/restructure/src/statemachine/nio-sm.asd ¶
r32 r49 9 9 ) 10 10 11 :depends-on (:nio ))11 :depends-on (:nio :nio-utils)) -
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.