# File monit/lib/symbiosis/monitor/process.rb, line 60
        def start
          do_initscript("start")
          @sleep.times do
            begin
              break unless self.pid.nil?
              sleep 1
            rescue ArgumentError, Errno::ESRCH
              # do nothing.. We're only going to do this a maximum of @sleep
              # times.
            end
          end
        end