On Wed, Jul 18, 2012 at 12:14 PM, Stanislav Frolov
<frolosof...@gmail.com> wrote:
> Stas, thank you for the reply.
>
> With NIL communication style lisp image is not intercative, execution
> "stops" after (swank:create-server), lisp listen one slime connection and
> execute slime commands one by one. This is not what I need...
>
> I would like useful interactive slime and I can't stop execution of my
> program when I work with its image. Is there any solutions?
Hi,

You could start swank in another thread.
(mp:process-run-function "swank"
                         #'(lambda ()
                             (swank:create-server)))

Then you have one thread dedicated to swank, allowing the rest of your
application to run as usual.

All the best,
Matthijs

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list

Reply via email to