Re: Making an Java Application "wait" to be called

1999-02-18 Thread B. Scott Boding

Richard Hall wrote:
> 
> I haven't quite figured out what keeps an app from exiting.  It seems that
> if you don't put a return; at the end of the main() method, it will sit
> idly.  Maybe someone else can give a definitive answer.
> 

Actually, I think that a Java app will only exit if all of the threads finish.
This means that if you start up GUI components that merely letting the main
method run its course won't exit the program because the event handler thread is
still running. You need to use something like System.exit(0); to force an exit
in that case.

-- 
B. Scott Boding  |  "Woah! Is my hair out?"
FCI Communications   | Hades, Lord of the Dead
(408) 947-1014   |   from Disney's Hercules



jdk1.2: libfontmanager.so: Unsatisfied Link

1999-03-09 Thread B. Scott Boding

I'm having a problem getting the JDK1.2 to run on my work machine. It's a
RedHat5.0 with a handful of upgrades. Anything non-gui related works fine, but
when I try to do anything graphical, I get the following error:

Exception in thread "main" java.lang.UnsatisfiedLinkError:
/usr/local/jdk1.2/jre/lib/i386/libfontmanager.so:
/usr/local/jdk1.2/jre/lib/i386/libfontmanager.so: undefined symbol:
__deregister_frame_info

I've tried searching through all the recent emails but I haven't found any
answer to this problem. Can someone help me out?


On the flip side, jdk1.2 work great on my machine at home which is a RedHat5.2
system. With only the minor tweak listed several times here I had it up and
running with very little effort! It was nice to generate a new set of enhanced
javadocs. Great job guys!


-- 
B. Scott Boding  |  "Woah! Is my hair out?"
FCI Communications   | Hades, Lord of the Dead
(408) 947-1014   |   from Disney's Hercules


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]