~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/ivykis/lib/iv_main.c

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-05-26 09:06:21 UTC
  • mfrom: (1.3.11)
  • Revision ID: package-import@ubuntu.com-20130526090621-8z2s0oi21eoljb9x
Tags: 3.3.9-1
* New upstream release.
* Include missed ivykis header (closes: #708793).

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
 
139
139
static void __iv_deinit(struct iv_state *st)
140
140
{
 
141
        iv_tls_thread_deinit(st);
 
142
 
141
143
        method->deinit(st);
142
 
 
143
144
        iv_timer_deinit(st);
144
 
        iv_tls_thread_deinit(st);
145
145
 
146
146
        pthread_setspecific(iv_state_key, NULL);
147
147
#ifdef HAVE_THREAD
196
196
 
197
197
        iv_task_init(st);
198
198
        iv_timer_init(st);
 
199
 
199
200
        iv_tls_thread_init(st);
200
201
}
201
202