hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp
changeset 37430 fd743dadef12
parent 35201 996db89f378e
child 38133 78b95467b9f1
equal deleted inserted replaced
37428:6e724f3d488b 37430:fd743dadef12
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   559   if (sig == SIGPIPE || sig == SIGXFSZ) {
   559   if (sig == SIGPIPE || sig == SIGXFSZ) {
   560     // allow chained handler to go first
   560     // allow chained handler to go first
   561     if (os::Linux::chained_handler(sig, info, ucVoid)) {
   561     if (os::Linux::chained_handler(sig, info, ucVoid)) {
   562       return true;
   562       return true;
   563     } else {
   563     } else {
   564       if (PrintMiscellaneous && (WizardMode || Verbose)) {
   564       // Ignoring SIGPIPE/SIGXFSZ - see bugs 4229104 or 6499219
   565         char buf[64];
       
   566         warning("Ignoring %s - see bugs 4229104 or 646499219",
       
   567                 os::exception_name(sig, buf, sizeof(buf)));
       
   568       }
       
   569       return true;
   565       return true;
   570     }
   566     }
   571   }
   567   }
   572 
   568 
   573   JavaThread* thread = NULL;
   569   JavaThread* thread = NULL;