0N/A#!/bin/sh
0N/A#
1472N/A# Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A# or visit www.oracle.com if you need additional information or have any
1472N/A# questions.
0N/A#
0N/A#
0N/A
0N/A# jdb is a .c file that seems to discard the setting of CLASSPATH.
0N/A# So, we have to run jdb by calling java directly :-(
0N/A
0N/A# License file for development version of dbx
0N/ALM_LICENSE_FILE=7588@extend.eng:/usr/dist/local/config/sparcworks/license.dat:7588@setlicense
0N/Aexport LM_LICENSE_FILE
0N/A
0N/AdoUsage()
0N/A{
0N/A cat <<EOF
0N/AUsage: runjdb.sh corefile -jdk jdk-pathname -sa sa-pathname
0N/A sa-pathname is the path of a JDI-SA build dir.
0N/AEOF
0N/A}
0N/A
0N/Ajdk=
0N/AjavaArgs=
0N/Aargs=
0N/Asa=
0N/Awhile [ $# != 0 ] ; do
0N/A case $1 in
0N/A -vv)
0N/A set -x
0N/A ;;
0N/A -jdk)
0N/A jdk=$2
0N/A shift
0N/A ;;
0N/A -sa)
0N/A sa=$2
0N/A shift
0N/A ;;
0N/A -help | help)
0N/A doUsage
0N/A exit
0N/A ;;
0N/A -*)
0N/A javaArgs="$javaArgs $1"
0N/A ;;
0N/A *)
0N/A if [ ! -z "$args" ] ; then
0N/A echo "Error: Only one core file or pid can be specified"
0N/A exit 1
0N/A fi
0N/A echo "$1" | grep -s '^[0-9]*$' > /dev/null
0N/A if [ $? = 0 ] ; then
0N/A # it is a pid
0N/A args="$args $1"
0N/A echo "Error: A pid is not yet allowed"
0N/A exit 1
0N/A else
0N/A # It is a core.
0N/A # We have to pass the name of the program that produced the
0N/A # core, and the core file itself.
0N/A args="$1"
0N/A fi
0N/A ;;
0N/A esac
0N/A shift
0N/Adone
0N/A
0N/Aif [ -z "$jdk" ] ; then
0N/A echo "Error: -jdk jdk-pathname is required"
0N/A exit 1
0N/Afi
0N/Aif [ -z "$sa" ] ; then
0N/A echo "Error: -sa sa-pathname is required"
0N/A exit 1
0N/Afi
0N/A
0N/Aif [ -z "$args" ] ; then
0N/A echo "Error: a core file or pid must be specified"
0N/A exit 1
0N/Afi
0N/A
0N/Aset -x
0N/A$jdk/bin/jdb -J-Xbootclasspath/a:$sa -connect \
0N/A sun.jvm.hotspot.jdi.SACoreAttachingConnector:core=$args,javaExecutable=$jdk/bin/java
0N/A
0N/A
0N/A#$jdk/bin/java -Xbootclasspath/a:$mmm/ws/merlin-sa/build/agent \
0N/A# com.sun.tools.example.debug.tty.TTY -connect \
0N/A# sun.jvm.hotspot.jdi.SACoreAttachingConnector:core=sagcore,javaExecutable=$jdk/bin/java