You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by do...@apache.org on 2002/03/30 23:10:39 UTC

cvs commit: jakarta-avalon-excalibur/command/src/java/org/apache/avalon/excalibur/command TPCThreadManager.java

donaldp     02/03/30 14:10:39

  Modified:    command  ant.properties.sample build.xml project.properties
               command/src/java/org/apache/avalon/excalibur/command
                        TPCThreadManager.java
  Log:
  Get the package closer to actually compiling. i
  
  * Include some of its dependencies in the ant.properties.sample file
  * Update build.xml to reflect real dependencies
  * Customize project adding in real names and so forth
  
  Revision  Changes    Path
  1.2       +20 -1     jakarta-avalon-excalibur/command/ant.properties.sample
  
  Index: ant.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/command/ant.properties.sample,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ant.properties.sample	28 Mar 2002 15:17:07 -0000	1.1
  +++ ant.properties.sample	30 Mar 2002 22:10:39 -0000	1.2
  @@ -9,7 +9,7 @@
   # The ant.properties values in this directory apply only to this component, and
   # override the defaults in ../ant.properties.
   #
  -# $Id: ant.properties.sample,v 1.1 2002/03/28 15:17:07 bloritsch Exp $
  +# $Id: ant.properties.sample,v 1.2 2002/03/30 22:10:39 donaldp Exp $
   # -----------------------------------------------------------------------------
   
   # --------------------------------------------------
  @@ -35,6 +35,25 @@
   junit.lib=${junit.home}
   junit.jar=${junit.lib}/junit.jar
   
  +# ----- Excalibur Event, version 1.0 or later -----
  +excalibur-event.home=${base.path}/excalibur-event-1.0
  +excalibur-event.lib=${excalibur-event.home}
  +excalibur-event.jar=${excalibur-event.lib}/excalibur-event-1.0.jar
  +
  +# ----- Excalibur Collections, version 1.0 or later -----
  +excalibur-collections.home=${base.path}/excalibur-collections-1.0
  +excalibur-collections.lib=${excalibur-collections.home}
  +excalibur-collections.jar=${excalibur-collections.lib}/excalibur-collections-1.0.jar
  +
  +# ----- Excalibur Concurrent, version 1.0 or later -----
  +excalibur-concurrent.home=${base.path}/excalibur-concurrent-1.0
  +excalibur-concurrent.lib=${excalibur-concurrent.home}
  +excalibur-concurrent.jar=${excalibur-concurrent.lib}/excalibur-concurrent-1.0.jar
  +
  +# ----- Avalon Framework, version 4.1 or later -----
  +avalon-framework.home=${base.path}/AvalonFramework4.1
  +avalon-framework.lib=${avalon-framework.home}/lib
  +avalon-framework.jar=${avalon-framework.lib}/avalon-framework-4.1.jar
   
   
   # --------------------------------------------------
  
  
  
  1.2       +5 -1      jakarta-avalon-excalibur/command/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/command/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	28 Mar 2002 15:17:07 -0000	1.1
  +++ build.xml	30 Mar 2002 22:10:39 -0000	1.2
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<project name="Excalibur template" default="main" basedir=".">
  +<project name="Excalibur Command" default="main" basedir=".">
   
       <!-- load per-project properties -->
       <property file="project.properties"/>
  @@ -46,6 +46,10 @@
       <path id="project.class.path">
           <pathelement path="${java.class.path}"/>
           <pathelement location="${build.classes}"/>
  +        <pathelement location="${excalibur-event.jar}"/>
  +        <pathelement location="${excalibur-collections.jar}"/>
  +        <pathelement location="${excalibur-concurrent.jar}"/>
  +        <pathelement location="${avalon-framework.jar}"/>
           <pathelement location="${junit.jar}"/>
           <pathelement location="${checkstyle.jar}"/>
       </path>
  
  
  
  1.2       +4 -4      jakarta-avalon-excalibur/command/project.properties
  
  Index: project.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/command/project.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.properties	28 Mar 2002 15:17:07 -0000	1.1
  +++ project.properties	30 Mar 2002 22:10:39 -0000	1.2
  @@ -1,4 +1,4 @@
  -name=my-component
  -Name=MyComponent
  -version=1.0
  -year=2000-2002
  +name=command
  +Name=Command
  +version=1.0a
  +year=2002
  
  
  
  1.10      +3 -2      jakarta-avalon-excalibur/command/src/java/org/apache/avalon/excalibur/command/TPCThreadManager.java
  
  Index: TPCThreadManager.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/command/src/java/org/apache/avalon/excalibur/command/TPCThreadManager.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- TPCThreadManager.java	26 Mar 2002 10:45:22 -0000	1.9
  +++ TPCThreadManager.java	30 Mar 2002 22:10:39 -0000	1.10
  @@ -26,7 +26,8 @@
    *
    * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a>
    */
  -public final class TPCThreadManager implements Runnable, ThreadManager, Disposable
  +public final class TPCThreadManager 
  +    implements Runnable, ThreadManager, Disposable
   {
       private final ThreadPool m_threadPool;
       private final Mutex m_mutex = new Mutex();
  @@ -223,4 +224,4 @@
               }
           }
       }
  -}
  \ No newline at end of file
  +}
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>