Comment 4 for bug 428514

Revision history for this message
Darxus (darxus) wrote :

A useful workaround may be adding "-XX:CompileCommand=exclude,com/aelitis/net/udp/uc/impl/PRUDPPacketHandlerImpl$5,runSupport" to the java incantation. For example, in karmic's version of azureus, change /usr/bin/azrueus from:

run_java -Dazureus.install.path="$HOME/.azureus" $UI \
    org.gudy.azureus2.ui.common.Main "$@"

to

run_java -Dazureus.install.path="$HOME/.azureus" $UI \
    -XX:CompileCommand=exclude,com/aelitis/net/udp/uc/impl/PRUDPPacketHandlerImpl$5,runSupport \
    org.gudy.azureus2.ui.common.Main "$@"

It runs. But it hasn't been long enough to be sure it prevents the crashing.