1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.process; 5 6 /** 7 * A process starter variant that will use the system classloader to instaniate the desired target main class 8 */ 9 public class DSOLinkedJavaProcessStarter { 10 11 public static void main(String args[]) throws Exception { 12 LinkedJavaProcessStarter.main(args, true); 13 } 14 15 } 16