At 11:01 PM 3/3/99 -0500, I wrote: >[EMAIL PROTECTED] writes: >> Running
Blackdown 1.1.7 with linux 2.0.36 on an Elan SC400 development >> board (486,
33 MHz, no floating point unit) results in extremely long load >> times (up to
an hour or more) for applets that load quickly on a desktop >> linux system.
After loading, the applet runs OK. I wrote a minimal AWT applet. The same
problem occurs. Here is the contents of the java and the html file:
Applet1.java: -------------- import java.awt.*; import java.applet.*; public
class Applet1 extends Applet { public void init() { setLayout(null);
setSize(426,266); button1.setLabel("Press This"); add(button1);
button1.setBackground(java.awt.Color.lightGray);
button1.setBounds(24,24,84,40); } java.awt.Button button1 = new
java.awt.Button(); } ------------- test.html: --------------
--------------- When I do appletviewer test.html, on my Elan linux system, top
shows appletviewer running for a few seconds, then a process
...i486/green_threads/.../java runs for a long time before any display appears.
It has been running now for over an hour with nothing to show for it. Doing the
same thing on a windows machine, or on a desktop linux system, rapidly displays
a frame with a button in it. If I start two instances of appletviewer, they
consume almost identical amounts of time, implying perhaps that the java
process is in a tite loop doing nothing. One thing that I said earlier is
actually not true: >And top shows that during the loading process X is taking
on the order >of 80% of processor time, java most of the rest. It is java that
isconsuming almost all of the time. X is only using a small percentage (there
was another ap running in my initial test which created confusion). Any help
would be appreciated -Richard Hodges
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]