crossroads

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

fastclose.cc (143B)


      1 #include "config"
      2 
      3 void Config::fastclose(bool b) {
      4     int lock;
      5     
      6     mutex_lock (&lock);
      7     fast_close = b;
      8     mutex_unlock (&lock);
      9 }