Java HotSpot VM mixed mode???

  • Wir haben grad einen ziemlich nervigen java fehler im geschäft...
    die VM stürz ab... in der crash beschreibung steht:


    [...]
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_04-b05 mixed mode)
    [...]


    weiss per zufall jemand, was diese "mixed mode" ist???


    gruss hang

  • keine ahnung. aber die neuste 1.4er version ist im moment die 1.4.2_07.


    ganto


    "Computer games don't affect kids, I mean if Pacman affected us as kids, we'd all run around in a darkened room munching pills and listening to repetitive music."


    Kristian Wilson

  • ja die wird soviel ich weiss grad installiert :)


    btw: hab glaub gefunden was es ist:


    Zitat

    What is the "mixed mode" execution in java? What are other modes of execution?


    The modes of execution are "compiled" and "interpreted". Modern JVMs mix both by selectively compiling to machine code only those parts of the bytecode that are executed most often (and applying special runtime optimizations). This avoids the compilation overhead for those parts of the code where it would yield no benefits.


    also auf gut deutsch: "mixed mode" klingt komisch, ist aber normal und gut...