# File lib_core/rucy/rc_d.rb, line 73
    def write_pid
      @File.open(@lock, File::WRONLY | File::CREAT | File::TRUNC) {|output|
        output.write($$.to_s + "\n")
      }
      nil
    end