Changeset 49 for branches/home


Ignore:
Timestamp:
01/22/07 04:12:43 (18 years ago)
Author:
psmith
Message:

Moved utils to own package

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  
    77(sleep 4)
    88(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)
    1010  (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  
    3434             ;;concurrent-queue
    3535             concurrent-queue add take
    36              
    37              ;;utils
    38              format-log
    3936             ))
  • TabularUnified branches/home/psmith/restructure/src/compat/nio-compat.asd

    r44 r49  
    88                 (:file "errno" :depends-on ("nio-compat-package"))
    99                 (:file "concurrent-queue" :depends-on ("nio-compat-package"))
    10                  (:file "utils" :depends-on ("nio-compat-package"))
    1110                 )
    1211
  • TabularUnified branches/home/psmith/restructure/src/io/nio-package.lisp

    r35 r49  
    2525THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2626|#
    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)
    2828           
    2929            (:export
  • TabularUnified branches/home/psmith/restructure/src/io/nio.asd

    r24 r49  
    1313                 )
    1414
    15     :depends-on (:cffi :event-notification :nio-buffer :nio-compat))
     15    :depends-on (:cffi :event-notification :nio-buffer :nio-compat :nio-utils))
    1616
  • TabularUnified branches/home/psmith/restructure/src/protocol/yarpc/nio-yarpc-package.lisp

    r45 r49  
    2525THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2626|#
    27 (defpackage :nio-yarpc (:use :cl :nio :nio-sm :nio-buffer)
     27(defpackage :nio-yarpc (:use :cl :nio :nio-sm :nio-buffer :nio-utils)
    2828           
    2929            (:export
  • TabularUnified branches/home/psmith/restructure/src/statemachine/nio-sm-package.lisp

    r41 r49  
    2525THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2626|#
    27 (defpackage :nio-sm (:use :cl :nio :nio-buffer)
     27(defpackage :nio-sm (:use :cl :nio :nio-buffer :nio-utils)
    2828           
    2929            (:export
  • TabularUnified branches/home/psmith/restructure/src/statemachine/nio-sm.asd

    r32 r49  
    99                 )
    1010
    11     :depends-on (:nio))
     11    :depends-on (:nio :nio-utils))
  • TabularUnified branches/home/psmith/restructure/src/utils/nio-utils-package.lisp

    r48 r49  
    11#|
    2 Copyright (c) 2006 Risto Laakso
     2Copyright (c) 2007
    33All rights reserved.
    44
     
    2525THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2626|#
    27 (defpackage :nio-compat (:use :cl)
     27(defpackage :nio-utils (:use :cl)
    2828           
    2929            (:export
    3030
    31              ;; errno.lisp
    32              get-errno +ERRNO_EAGAIN+
    33              
    34              ;;concurrent-queue
    35              concurrent-queue add take
    36              
    3731             ;;utils
    3832             format-log
  • TabularUnified branches/home/psmith/restructure/src/utils/nio-utils.asd

    r44 r49  
    33(in-package :asdf)
    44
    5 (defsystem :nio-compat
     5(defsystem :nio-utils
    66
    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"))
    119                 )
    1210
  • TabularUnified branches/home/psmith/restructure/src/utils/utils.lisp

    r48 r49  
    2626|#
    2727
    28 (in-package :nio-compat)
     28(in-package :nio-utils)
    2929
    3030(declaim (optimize (debug 3) (speed 3) (space 0)))
Note: See TracChangeset for help on using the changeset viewer.