<?xml version="1.0"?>
<!DOCTYPE configuration SYSTEM "dtd/Configuration.dtd">
<configuration name="KernelTasks" version="1.0" os="UNX">
  <package name="com.sap.sdt.tools" version="1.0"/>

  <task name="COPY_BINARIES" type="fs">
    <copy toDir="$(TARGET_DIR)" overwrite="true" id="CopyBinaries">
      <fileset dir="$(SOURCE_DIR)/kernel">
        <include name="*"/>
      </fileset>
    </copy>
  </task>

  <task name="RUN_CLEANIPC" type="extProcess">
    <process executable="$(/J2EE/StandardSystem/ExecutableDirectory)/cleanipc" dir="$(/J2EE/StandardSystem/ExecutableDirectory)" stdout="$(JSPM/DIR/LOG)/CLEAN_IPC.OUT" stderr="$(JSPM/DIR/LOG)/CLEAN_IPC.ERR" id="RunCleanIPC">
      <arg value="$(/J2EE/StandardSystem/CentralInstance/InstanceID)"/>
      <arg value="remove"/>
      <checkRC result="FATAL">
        <values invert="true">
          <single value="0"/>
        </values>
        <message>Could not clean the shared memory segment of the J2EE engine central instance</message>
      </checkRC>
    </process>
  </task>
  
</configuration>