~ubuntu-branches/ubuntu/precise/corosync/precise-proposed

« back to all changes in this revision

Viewing changes to exec/timer.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Loschwitz
  • Date: 2011-10-19 14:32:18 UTC
  • mfrom: (1.1.6 upstream) (5.1.16 sid)
  • Revision ID: james.westby@ubuntu.com-20111019143218-ew8phl0raqyog844
Tags: 1.4.2-1
* Changed my email address in debian/control
* Add corosync-blackbox to the corosync package
* Imported Upstream version 1.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
                if (fds < 0) {
132
132
                        return NULL;
133
133
                }
 
134
                timer_serialize_lock_fn ();
134
135
                pthread_mutex_lock (&timer_mutex);
135
 
                timer_serialize_lock_fn ();
136
136
 
137
137
                timerlist_expire (&timers_timerlist);
138
138
 
 
139
                pthread_mutex_unlock (&timer_mutex);
139
140
                timer_serialize_unlock_fn ();
140
 
                pthread_mutex_unlock (&timer_mutex);
141
141
        }
142
142
}
143
143