Changeset 346


Ignore:
Timestamp:
Apr 19, 2012, 1:28:27 AM (13 years ago)
Author:
dmik
Message:

Disable Win32 TIB mode since SEH now works in OS/2 context.

This fixes the old IBM TCP/IP settings application (closes #162).

Location:
trunk/openjdk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/hotspot/src/os/os2/vm/os_os2_init.cpp

    r315 r346  
    7272        CheckVersionFromHMOD(PE2LX_VERSION, hModule);
    7373
     74#ifdef ODIN_FORCE_WIN32_TIB
    7475        // enable __try/__except support
    75         EnableSEH();
     76        ForceWin32TIB();
     77#endif
    7678
    7779        dllHandle = RegisterLxDll(hModule, DllMain, NULL);
  • trunk/openjdk/jdk/src/windows/bin/java_md.c

    r333 r346  
    365365main(int argc, char ** argv)
    366366{
    367     EnableSEH();
     367#ifdef ODIN_FORCE_WIN32_TIB
     368    ForceWin32TIB();
     369#endif
    368370    return RegisterLxExe((WINMAIN)WinMain, NULL);
    369371}
Note: See TracChangeset for help on using the changeset viewer.