From: Vladimir T. <vtz...@gm...> - 2012-10-09 19:59:41
|
On Tue, Oct 9, 2012 at 11:03 AM, z_axis <z_...@16...> wrote: > Would you like shed a light on me ? > http://stackoverflow.com/questions/12650082/about-stumpwm-and-swank > > Once swank server is started, i can do nothing using stumpwm . The swank server supports several communication styles. Latest version does not specify preferred one for clisp and it fallbacks to singlethreaded-connection. This means that all i/o, processing, etc happens in the clisp main thread, i.e. you may have single swank connection and start-server never returns. If you want to have multiple connections - change (in swank-clisp.lisp) preferred-communication-style to return :spawn (however did not test this - just reading the code). Vlad |