Ticket #118: No_FS_abuse_Java.diff

File No_FS_abuse_Java.diff, 1.6 KB (added by dmik, 13 years ago)
  • openjdk/hotspot/src/os/os2/vm/os_os2_init.cpp

     
    7171        // (this will issue a message box and abort the process on mismatch)
    7272        CheckVersionFromHMOD(PE2LX_VERSION, hModule);
    7373
     74#if 0
    7475        // enable __try/__except support
    7576        EnableSEH();
     77#endif
    7678
    7779        dllHandle = RegisterLxDll(hModule, DllMain, NULL);
    7880        if (dllHandle == 0)
  • openjdk/hotspot/src/os/windows/vm/os_windows.cpp

     
    21212121
    21222122static inline void report_error(Thread* t, DWORD exception_code,
    21232123                                address addr, void* siginfo, void* context) {
     2124#if 0
    21242125  VMError err(t, exception_code, addr, siginfo, context);
    21252126  err.report_and_die();
     2127#endif
    21262128
    21272129  // If UseOsErrorReporting, this will return here and save the error file
    21282130  // somewhere where we can find it in the minidump.
  • openjdk/jdk/src/windows/bin/java_md.c

     
    364364int
    365365main(int argc, char ** argv)
    366366{
     367#if 0
    367368    EnableSEH();
     369#endif
    368370    return RegisterLxExe((WINMAIN)WinMain, NULL);
    369371}
    370372