/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#include "precompiled.hpp"
#include "runtime/arguments.hpp"
#include "runtime/thread.hpp"
#include "utilities/vmError.hpp"
#include <unistd.h>
#include <signal.h>
bool yes;
do {
"\n\n"
"Do you want to debug the problem?\n\n"
"Enter 'yes' to launch gdb automatically (PATH must include gdb)\n"
"Otherwise, press RETURN to abort...",
if (yes) {
// yes, user asked VM to launch debugger
yes = false;
}
} while (yes);
}
// Space for our "saved" signal flags and handlers
{
}
return resettedSigflags[0];
return resettedSigflags[1];
}
return -1;
}
return resettedSighandler[0];
return resettedSighandler[1];
}
return NULL;
}
// unmask current signal
}
// Save sigflags for resetted signals
save_signal(0, SIGSEGV);
}