/**
  * Returns a unique entry with informations about the current process
  *
  * @access public
  * @return array
  */
 public static function GetProcessEntry()
 {
     if (!isset(self::$processentry)) {
         self::$processentry = array();
         self::$processentry['id'] = self::GetProcessIdentifier();
         self::$processentry['pid'] = self::$pid;
         self::$processentry['time'] = self::$start;
         self::$processentry['cc'] = Request::GetCommandCode();
     }
     return self::$processentry;
 }