agent/make/start-debug-server-proc.sh

Wed, 19 Sep 2012 17:22:49 -0400

author
bpittore
date
Wed, 19 Sep 2012 17:22:49 -0400
changeset 4074
fac3dd92ebaf
parent 4028
a9fed06c01d2
child 6876
710a3c8b516e
permissions
-rw-r--r--

7195372: Wrong copyright in new files
Summary: Fixed copyrights
Reviewed-by: dholmes
Contributed-by: Bill Pittore <bill.pittore@oracle.com>

duke@435 1 #!/bin/sh
duke@435 2 #
bpittore@4074 3 # Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 5 #
duke@435 6 # This code is free software; you can redistribute it and/or modify it
duke@435 7 # under the terms of the GNU General Public License version 2 only, as
duke@435 8 # published by the Free Software Foundation.
duke@435 9 #
duke@435 10 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 13 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 14 # accompanied this code).
duke@435 15 #
duke@435 16 # You should have received a copy of the GNU General Public License version
duke@435 17 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 19 #
trims@1907 20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 21 # or visit www.oracle.com if you need additional information or have any
trims@1907 22 # questions.
duke@435 23 #
duke@435 24 #
duke@435 25
duke@435 26 . `dirname $0`/saenv.sh
duke@435 27
bpittore@4028 28 if [ -f $STARTDIR/../lib/sa-jdi.jar ] ; then
bpittore@4028 29 CP=$STARTDIR/../lib/sa-jdi.jar
duke@435 30 else
duke@435 31 CP=$STARTDIR/../build/classes
duke@435 32 fi
duke@435 33
bpittore@4028 34 $STARTDIR/java -classpath $CP ${OPTIONS} -Djava.rmi.server.codebase=file://$CP -Djava.security.policy=${STARTDIR}/grantAll.policy sun.jvm.hotspot.DebugServer $*
bpittore@4028 35

mercurial