mcconnell    2003/02/16 03:10:33

  Added:       merlin/src/config kernel.xml
  Log:
  Default kernel configuration (now independent of a particular deployment 
scenario).
  
  Revision  Changes    Path
  1.1                  avalon-sandbox/merlin/src/config/kernel.xml
  
  Index: kernel.xml
  ===================================================================
  
  <!--
  kernel.xml
  The kernel.xml file contains the definition of a Merlin kernel.  The kernel 
  can contain the following declarations:
  
     1. a system descriptor that declares the hostname of this machine
     2. a logging descriptor for establishment of the logging subsystem
     3. a logging catagories descriptor that establishes logging priority
        for the kernel
     4. an engine descriptor used to configure the pool
  
  Once a kernel is established the controlling application supplies one or block
  configurations to the kernel for deployment.
  -->
  
  <kernel>
  
     <!--
     -->
  
     <system host="localhost"/>
  
     <logging target="default" priority="INFO">
        <category name="/sys/logger" priority="WARN"/>
        <target name="kernel">
          <file location="kernel.log" />
        </target>
     </logging>
  
     <categories>
        <category name="/sys" priority="INFO"/>
     </categories>
  
     <engine>
       <!--
       Setup the thread, command and pool manager parameters.
       -->
       <pool>
         <threads-per-processor>2</threads-per-processor>
         <sleep>1000</sleep>
         <timeout>250</timeout>
       </pool>
     </engine>
  
  </kernel>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to