From: aneil
Subject: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <945e01d3-e4e6-4e67-91a4-5a2761520e55@a70g2000hsh.googlegroups.com>
I'm running Lispworks 5.0.2 on Ubuntu 7.10, and am experiencing a
large number of hangs.  This happens unpredictably while performing
ordinary operations in the editor such as pasting text or moving the
cursor.  The CPU usage is split mainly between Xorg (~35%) and
lispworks (15-21%).  Lispworks typically becomes completely
unresponsive, and occasionally returns to normal.  I never experience
such problems with the Windows version, which is a paragon of
stability by comparison.

Has anyone else experienced this problem?  Any idea what's causing it?

From: Edi Weitz
Subject: Re: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <u8wzd9f4h.fsf@agharta.de>
On Wed, 16 Apr 2008 20:43:39 -0700 (PDT), aneil <··········@gmail.com> wrote:

> I'm running Lispworks 5.0.2 on Ubuntu 7.10, and am experiencing a
> large number of hangs.  This happens unpredictably while performing
> ordinary operations in the editor such as pasting text or moving the
> cursor.  The CPU usage is split mainly between Xorg (~35%) and
> lispworks (15-21%).  Lispworks typically becomes completely
> unresponsive, and occasionally returns to normal.  I never
> experience such problems with the Windows version, which is a
> paragon of stability by comparison.
>
> Has anyone else experienced this problem?  Any idea what's causing
> it?

You are much more likely to get helpful answers on the LW mailing
list.

  http://www.lispworks.com/support/lisp-hug.html

Edi.

-- 

European Common Lisp Meeting, Amsterdam, April 19/20, 2008

  http://weitz.de/eclm2008/

Real email: (replace (subseq ·········@agharta.de" 5) "edi")
From: ·······@eurogaran.com
Subject: Re: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <95b23b8e-ebfe-4131-9c92-828aee6b9a02@f63g2000hsf.googlegroups.com>
Is it reproducible?
Reproducibility comes in 4 flavors:
- same software causes same failure
(Try different versions of the program and of the operating system)
- same hardware causes same failure
(Try on another machine)
- same software circumstances (memory occupation, impossibility to
write to a device...) cause same failure
- same hardware circumstances (temperature, momentary electric high)
cause same failure

No Windows program can be a paragon of stability.
What does /var/log/syslog say?
From: Chun Tian (binghe)
Subject: Re: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <bdeb94c6-a9ba-4c8e-a4fa-436e3673d97e@n14g2000pri.googlegroups.com>
On 4ÔÂ17ÈÕ, ÉÏÎç11ʱ43·Ö, aneil <··········@gmail.com> wrote:
> I'm running Lispworks 5.0.2 on Ubuntu 7.10, and am experiencing a
> large number of hangs.  This happens unpredictably while performing
> ordinary operations in the editor such as pasting text or moving the
> cursor.  The CPU usage is split mainly between Xorg (~35%) and
> lispworks (15-21%).  Lispworks typically becomes completely
> unresponsive, and occasionally returns to normal.  I never experience
> such problems with the Windows version, which is a paragon of
> stability by comparison.
>
> Has anyone else experienced this problem?  Any idea what's causing it?

I think it's a font-display problem of Motif on your Xorg environment,
not any bug of LispWorks itself.

I suggest you install a package named "xfs", and add following line
into /etc/X11/xorg.conf:

Fontpath "unix/:7100"

near other font-path config.

If you haven't install any "xfont-100dpi" or "xfonts-75dpi" package,
you should installed.

The key is, you MUST NOT let Xorg choose a True Type font to display
anything in Motif interface, that will be quite slow.

Regards,

Chun Tian (binghe)
From: Spiros Bousbouras
Subject: Re: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <13c48ae7-50cd-4be5-a829-7b49a0e5c5c0@k37g2000hsf.googlegroups.com>
On 17 Apr, 04:43, aneil <··········@gmail.com> wrote:
> I'm running Lispworks 5.0.2 on Ubuntu 7.10, and am experiencing a
> large number of hangs.  This happens unpredictably while performing
> ordinary operations in the editor such as pasting text or moving the
> cursor.  The CPU usage is split mainly between Xorg (~35%) and
> lispworks (15-21%).  Lispworks typically becomes completely
> unresponsive, and occasionally returns to normal.  I never experience
> such problems with the Windows version, which is a paragon of
> stability by comparison.
>
> Has anyone else experienced this problem?  Any idea what's causing it?

I don't know what's causing it but 35% for Xorg
seems rather a lot. Are you running demanding
graphics operations at the same time ? If not
then you might ask at an Ubuntu group/message
board. And why is lispworks using so much CPU
time ? Is it doing any calculations ?
From: Wade Humeniuk
Subject: Re: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <512ccbb0-b792-4675-b14e-3d8834143f68@w5g2000prd.googlegroups.com>
On Apr 16, 9:43 pm, aneil <··········@gmail.com> wrote:
> I'm running Lispworks 5.0.2 on Ubuntu 7.10, and am experiencing a
> large number of hangs.  This happens unpredictably while performing
> ordinary operations in the editor such as pasting text or moving the
> cursor.  The CPU usage is split mainly between Xorg (~35%) and
> lispworks (15-21%).  Lispworks typically becomes completely
> unresponsive, and occasionally returns to normal.  I never experience
> such problems with the Windows version, which is a paragon of
> stability by comparison.
>
> Has anyone else experienced this problem?  Any idea what's causing it?

I also has this problem with an earlier version of LW.  The problem is
lesstif (which is the default motif installation on Ubuntu).  To fix,
install
the libmotif3 package and then make the following modification to the
LW config file located in

/usr/local/lib/LispWorks/lib/4-3-0-0/config/use-motif-library

and make sure the preferred version is :motif  (config command below)


(:detect-version (("/usr/X11R6/lib/libXm.so.2.0.1" :lesstif)
                  ("/usr/X11R6/lib/libXm.so.3" :motif))
 :prefer-version :motif
 )
From: Paul Tarvydas
Subject: Re: Lispworks Hangs on Ubuntu
Date: 
Message-ID: <fufg7v$ks9$1@aioe.org>
aneil wrote:

> I'm running Lispworks 5.0.2 on Ubuntu 7.10, and am experiencing a
> large number of hangs.  This happens unpredictably while performing
> ordinary operations in the editor such as pasting text or moving the
...
> Has anyone else experienced this problem?  Any idea what's causing it?

It's a problem with Motif, according to the answer I got from lispworks when
I reported it.

It happens to me under Mandriva linux, also.

The operation that seems to cause the problem for me is copy-paste from a
non-lispworks window to a lispworks window.  You can try hitting the
buttons in the lispworks monitor ('break to tty', 'interrupt'), I can't
remember if that works for me.  I have learned to avoid pasting from other
windows and use intermediate files in the few cases where I do need to grab
something from elsewhere.

pt