/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2009-02-05 03:04:47 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090205030447-k1039txjutilj00d
* plugin-runner.c (struct plugin.completed): Changed type to "volatile
                                             sig_atomic_t"; all uses
                                             changed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
  size_t buffer_size;
90
90
  size_t buffer_length;
91
91
  bool eof;
92
 
  volatile bool completed;
 
92
  volatile sig_atomic_t completed;
93
93
  volatile int status;
94
94
  struct plugin *next;
95
95
} plugin;
248
248
      continue;
249
249
    }
250
250
    proc->status = status;
251
 
    proc->completed = true;
 
251
    proc->completed = 1;
252
252
  }
253
253
}
254
254