crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

pidfile.cc (149B)


      1 #include "config"
      2 
      3 void Config::pidfile (string const &p) {
      4     int lock;
      5     
      6     mutex_lock (&lock);
      7     pid_file = p;
      8     mutex_unlock (&lock);
      9 }