hotspot/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.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  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
     3  * Copyright (c) 2014, Red Hat Inc. All rights reserved.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     7  * under the terms of the GNU General Public License version 2 only, as
   268   if (sig == SIGPIPE || sig == SIGXFSZ) {
   268   if (sig == SIGPIPE || sig == SIGXFSZ) {
   269     // allow chained handler to go first
   269     // allow chained handler to go first
   270     if (os::Linux::chained_handler(sig, info, ucVoid)) {
   270     if (os::Linux::chained_handler(sig, info, ucVoid)) {
   271       return true;
   271       return true;
   272     } else {
   272     } else {
   273       if (PrintMiscellaneous && (WizardMode || Verbose)) {
   273       // Ignoring SIGPIPE/SIGXFSZ - see bugs 4229104 or 6499219
   274         char buf[64];
       
   275         warning("Ignoring %s - see bugs 4229104 or 646499219",
       
   276                 os::exception_name(sig, buf, sizeof(buf)));
       
   277       }
       
   278       return true;
   274       return true;
   279     }
   275     }
   280   }
   276   }
   281 
   277 
   282   JavaThread* thread = NULL;
   278   JavaThread* thread = NULL;