[Bug 213] New: OpenJDK-6-jre freezes on simple midi app, sun JRE does not

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Mon Oct 13 02:44:58 PDT 2008


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=213

           Summary: OpenJDK-6-jre freezes on simple midi app, sun JRE does
                    not
           Product: IcedTea
           Version: unspecified
          Platform: PC
               URL: https://bugs.launchpad.net/bugs/275672
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: IcedTea
        AssignedTo: unassigned at icedtea.classpath.org
        ReportedBy: doko at ubuntu.com


Independent auf pulseaudio

When running a simple app that gets a Sequencer object and exits, OpenJDK will
create the object and not exit while sun-java6-jre (version 6-07-4ubuntu2)
creates the object and properly exits. The proper behavior is the one Sun's
java exhibits.

Sample program (also attached):
import javax.sound.midi.*;

public class MusicTest1 {
    public void play() {

        try {
            Sequencer sequencer = MidiSystem.getSequencer();
            System.out.println("Successfully got a sequencer");
        } catch(MidiUnavailableException ex) {
            System.out.println("Bummer");
        }
    }

    public static void main(String[] args) {
        MusicTest1 mt = new MusicTest1();
        mt.play();
        System.out.println("After play");
    }
}


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list