Changeset 15118
- Timestamp:
- Dec 7, 2011, 5:58:53 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/source/cocoa-ide/cocoa-remote-lisp.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/cocoa-ide/cocoa-remote-lisp.lisp
r15116 r15118 17 17 ;; Use the IDE to debug a remote ccl. 18 18 ;; **** THIS IS NOT COMPLETE AND NOT HOOKED UP TO ANYTHING YET ***** 19 ;; To try it, do (swink:start-server :port <port>) in the remote ccl, 20 ;; then call (ccl::rlisp-test <port> <remote-host>) in the IDE. 19 21 ;; 20 22 21 23 (in-package "GUI") 22 24 23 #+debug ;; For testing, start a ccl running swank, then call this in the ide. 24 (defun cl-user::rlisp-test (port &optional host) 25 (declare (special cl-user::conn)) 26 (when (boundp 'cl-user::conn) (close cl-user::conn)) 27 (setq cl-user::conn (ccl::connect-to-swink (or host "localhost") port)) 28 (ccl::make-rrepl-thread cl-user::conn "IDE Listener")) 25 (defun ccl::rlisp-test (port &optional host) 26 (let ((conn (ccl::connect-to-swink (or host "localhost") port))) 27 (ccl::make-rrepl-thread conn "IDE Listener"))) 29 28 30 29 (defclass remote-listener-hemlock-view (hi:hemlock-view)
Note:
See TracChangeset
for help on using the changeset viewer.
