~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/src/thread_xt.h

  • Committer: Monty Taylor
  • Date: 2010-10-30 01:19:00 UTC
  • mto: (1892.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1893.
  • Revision ID: mordred@inaugust.com-20101030011900-2tdt8w9vt7a6pbk0
Fixed things to make things compile with clang

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
class XTTask;
242
242
 
243
243
/* Run a task. The thread input is the thread that is running the task. */
244
 
typedef xtBool (*XTDoTaskFunc)(struct XTTask *task_data, struct XTThread *thread);
245
 
typedef void (*XTFreeTaskFunc)(struct XTTask *task_data);
 
244
typedef xtBool (*XTDoTaskFunc)(XTTask *task_data, XTThread *thread);
 
245
typedef void (*XTFreeTaskFunc)(XTTask *task_data);
246
246
 
247
247
class XTTask {
248
248
        public: